Ignore:
Timestamp:
2020-06-14T17:17:08+02:00 (6 years ago)
Author:
simon04
Message:

see #19334 - https://errorprone.info/bugpattern/UnnecessaryParentheses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmChangesetParser.java

    r14231 r16630  
    205205                    throwException(tr("Missing mandatory attribute ''{0}''.", "version"));
    206206                }
    207                 if (!("0.6".equals(v))) {
     207                if (!"0.6".equals(v)) {
    208208                    throwException(tr("Unsupported version: {0}", v));
    209209                }
Note: See TracChangeset for help on using the changeset viewer.