Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
  • Loading branch information
mmews committed Aug 30, 2024
1 parent bd832e5 commit 3b8d3a6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ public String diagnostics(Diagnostic diagnostic) {
static public String getShortSeverity(DiagnosticSeverity severity) {
switch (severity) {
case Error:
// return "ERR";
return "🔴";
return "ERR";
// return "🔴";
case Warning:
// return "WRN";
return "🟡";
return "WRN";
// return "🟡";
case Information:
return "INF";
case Hint:
Expand Down

0 comments on commit 3b8d3a6

Please sign in to comment.