Ignore:
Timestamp:
2021-12-20T17:13:38+01:00 (4 years ago)
Author:
Don-vip
Message:

fix #21645 - code cleanup (patch by gaben)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java

    r18321 r18342  
    349349                if (ch == '\\' || ch == '(' || ch == '{' || ch == ',' || ch == ')' || ch == '}' || ch == '=') {
    350350                    result.append('\\');
    351                     result.append(ch);
    352                 } else {
    353                     result.append(ch);
    354                 }
     351                }
     352                result.append(ch);
    355353            }
    356354        }
Note: See TracChangeset for help on using the changeset viewer.