From 2ec9773e152585767f61768acd6291c2d3b7033c Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Fri, 13 Jan 2017 05:27:42 +0300 Subject: [PATCH] Minor: fix CompilerMessageSeverity order --- .../cli/common/messages/CompilerMessageSeverity.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 cf3b27b8ded..cf49c63311b 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 @@ -19,12 +19,12 @@ package org.jetbrains.kotlin.cli.common.messages; import java.util.EnumSet; public enum CompilerMessageSeverity { - ERROR, - EXCEPTION, - WARNING, INFO, - OUTPUT, - LOGGING; + ERROR, + WARNING, + EXCEPTION, + LOGGING, + OUTPUT; public static final EnumSet ERRORS = EnumSet.of(ERROR, EXCEPTION); public static final EnumSet VERBOSE = EnumSet.of(OUTPUT, LOGGING);