Minor rename parameters to match parent constructor

This commit is contained in:
Alexey Tsvetkov
2017-01-13 05:35:25 +03:00
parent 2ec9773e15
commit a56c92f28d
@@ -40,10 +40,10 @@ class IncrementalCompilationOptions(
val customCacheVersion: Int,
compilerMode: CompileService.CompilerMode,
targetPlatform: CompileService.TargetPlatform,
reportedCategories: Array<Int>,
reportedSeverity: Int,
reportCategories: Array<Int>,
reportSeverity: Int,
requestedCompilationResults: Array<Int>
) : CompilationOptions(compilerMode, targetPlatform, reportedCategories, reportedSeverity, requestedCompilationResults) {
) : CompilationOptions(compilerMode, targetPlatform, reportCategories, reportSeverity, requestedCompilationResults) {
companion object {
const val serialVersionUID: Long = 0
}