Minor, change parameter type of parseCommandLineArguments

This commit is contained in:
Alexander Udalov
2017-07-25 15:40:30 +03:00
parent 593f98190d
commit 845de7aa4d
6 changed files with 13 additions and 15 deletions
@@ -366,7 +366,7 @@ class CompileServiceImpl(
} as CLICompiler<CommonCompilerArguments>
val k2PlatformArgs = compiler.createArguments()
parseCommandLineArguments(compilerArguments, k2PlatformArgs)
parseCommandLineArguments(compilerArguments.asList(), k2PlatformArgs)
val argumentParseError = validateArguments(k2PlatformArgs.errors)
if (argumentParseError != null) {
messageCollector.report(CompilerMessageSeverity.ERROR, argumentParseError)