Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
change ErrorCode#toString
Browse files Browse the repository at this point in the history
  • Loading branch information
Likqez committed Aug 19, 2021
1 parent 9bb6e26 commit d6e7fee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ public int code() {

@Override
public String toString() {
return name().toLowerCase().replaceAll("[_]", " ");
return name().toUpperCase().replaceAll("[_]", " ");
}
}

0 comments on commit d6e7fee

Please sign in to comment.