From 18e3768635102c231d459b7f6e58224949fce454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Vajk?= Date: Mon, 8 Nov 2021 16:47:07 +0100 Subject: [PATCH] Fix typo --- .../src/main/kotlin/KotlinExtractorCommandLineProcessor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/kotlin-extractor/src/main/kotlin/KotlinExtractorCommandLineProcessor.kt b/java/kotlin-extractor/src/main/kotlin/KotlinExtractorCommandLineProcessor.kt index 88e7bb682e84..5bc837617dff 100644 --- a/java/kotlin-extractor/src/main/kotlin/KotlinExtractorCommandLineProcessor.kt +++ b/java/kotlin-extractor/src/main/kotlin/KotlinExtractorCommandLineProcessor.kt @@ -35,7 +35,7 @@ class KotlinExtractorCommandLineProcessor : CommandLineProcessor { "checkTrapIdentical" -> when (value) { "true" -> configuration.put(KEY_CHECK_TRAP_IDENTICAL, true) - "fale" -> configuration.put(KEY_CHECK_TRAP_IDENTICAL, false) + "false" -> configuration.put(KEY_CHECK_TRAP_IDENTICAL, false) else -> error("kotlin extractor: Bad argument $value for checkTrapIdentical") } else -> error("kotlin extractor: Bad option: ${option.optionName}")