Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

properties fix, dont report callstack for missing resource #6109

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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