mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
treat Diagnostic.Kind.NOTE as information message, not a warning message (IDEA-105383)
This commit is contained in:
@@ -896,10 +896,10 @@ public class JavaBuilder extends ModuleLevelBuilder {
|
||||
break;
|
||||
case MANDATORY_WARNING:
|
||||
case WARNING:
|
||||
case NOTE:
|
||||
kind = BuildMessage.Kind.WARNING;
|
||||
myWarningCount++;
|
||||
break;
|
||||
case NOTE:
|
||||
default:
|
||||
kind = BuildMessage.Kind.INFO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user