Minor, explain what CompilerMessageSeverity.STRONG_WARNING is

This commit is contained in:
Alexander Udalov
2017-02-07 16:16:24 +03:00
parent 4c9afb9d20
commit 8fee62a8c5
@@ -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,