diff options
Diffstat (limited to 'lib/compilers/kotlin.ts')
-rw-r--r-- | lib/compilers/kotlin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/kotlin.ts b/lib/compilers/kotlin.ts index dfc115b12..c58a54347 100644 --- a/lib/compilers/kotlin.ts +++ b/lib/compilers/kotlin.ts @@ -56,7 +56,7 @@ export class KotlinCompiler extends JavaCompiler { override filterUserOptions(userOptions: string[]) { // filter options without extra arguments userOptions = (userOptions || []).filter( - option => option !== '-script' && option !== '-progressive' && !option.startsWith('-Xjavac'), + option => option !== '-script' && option !== '-progressive' && !option.startsWith('-Xjavac') ); const oneArgForbiddenList = new Set([ |