Minor: fix CompilerMessageSeverity order
This commit is contained in:
+5
-5
@@ -19,12 +19,12 @@ package org.jetbrains.kotlin.cli.common.messages;
|
|||||||
import java.util.EnumSet;
|
import java.util.EnumSet;
|
||||||
|
|
||||||
public enum CompilerMessageSeverity {
|
public enum CompilerMessageSeverity {
|
||||||
ERROR,
|
|
||||||
EXCEPTION,
|
|
||||||
WARNING,
|
|
||||||
INFO,
|
INFO,
|
||||||
OUTPUT,
|
ERROR,
|
||||||
LOGGING;
|
WARNING,
|
||||||
|
EXCEPTION,
|
||||||
|
LOGGING,
|
||||||
|
OUTPUT;
|
||||||
|
|
||||||
public static final EnumSet<CompilerMessageSeverity> ERRORS = EnumSet.of(ERROR, EXCEPTION);
|
public static final EnumSet<CompilerMessageSeverity> ERRORS = EnumSet.of(ERROR, EXCEPTION);
|
||||||
public static final EnumSet<CompilerMessageSeverity> VERBOSE = EnumSet.of(OUTPUT, LOGGING);
|
public static final EnumSet<CompilerMessageSeverity> VERBOSE = EnumSet.of(OUTPUT, LOGGING);
|
||||||
|
|||||||
Reference in New Issue
Block a user