Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
git-svn-id: https://josm.openstreetmap.de/svn/trunk@19297 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
taylor.smock committed Jan 28, 2025
1 parent 8eef0de commit 2ad1961
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,7 @@ public void exitMode() {
public String getModeHelpText() {
// TODO: add more detailed feedback based on modifier state.
// TODO: dynamic messages based on preferences. (Could be problematic translation wise)
switch (mode) {
if (mode == NORMAL) {
if (mode == Mode.NORMAL) {
// CHECKSTYLE.OFF: LineLength
return tr("Select ways as in Select mode. Drag selected ways or a single way to create a parallel copy (Alt toggles tag preservation)");
// CHECKSTYLE.ON: LineLength
Expand Down

0 comments on commit 2ad1961

Please sign in to comment.