Skip to content

Commit

Permalink
Merge pull request #6109 from SJuliez/messages-fix
Browse files Browse the repository at this point in the history
properties fix, dont report callstack for missing resource
  • Loading branch information
SJuliez authored Oct 17, 2024
2 parents 68f41be + 6208cb8 commit b0d5670
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion megamek/i18n/megamek/client/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,7 @@ MovementDisplay.MoveAccelerate=Accelerate
MovementDisplay.MoveAccNext=Acc Next
MovementDisplay.moveBackUp=Back Up
MovementDisplay.moveBrace=Brace
MovementDisplay.moveCallSuport=Call Support
MovementDisplay.moveCallSupport=Call Support
MovementDisplay.moveCharge=Charge
MovementDisplay.moveClear=Clear mines
MovementDisplay.moveClimbMode=Climb Mode
Expand Down
1 change: 0 additions & 1 deletion megamek/src/megamek/client/ui/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
logger.error(e, "Missing i18n entry: " + key);
return '!' + key + '!';
}
}
Expand Down

0 comments on commit b0d5670

Please sign in to comment.