From 8fee62a8c57ec3fd91fdc77243243bbcaa72758c Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 7 Feb 2017 16:16:24 +0300 Subject: [PATCH] Minor, explain what CompilerMessageSeverity.STRONG_WARNING is --- .../kotlin/cli/common/messages/CompilerMessageSeverity.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java index d2b9a00d56a..e939b34a8a6 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java @@ -23,6 +23,8 @@ import java.util.EnumSet; public enum CompilerMessageSeverity { EXCEPTION, ERROR, + // Unlike a normal warning, a strong warning is not discarded when there are compilation errors. + // Use it for problems related to configuration, not the diagnostics STRONG_WARNING, WARNING, INFO,