Ignore:
Timestamp:
2018-09-15T13:50:24+02:00 (6 years ago)
Author:
donvip
Message:

fix UnnecessaryParentheses warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/s57/S57osm.java

    r33724 r34652  
    99import s57.S57map.Snode;
    1010import s57.S57obj.Obj;
    11 import s57.S57val.CatBUA;
    1211import s57.S57val.CatROD;
    1312import s57.S57val.Conv;
     
    131130                    }
    132131                } else {
    133                     if ((inNode || inWay || inRel) && (ln.contains("<tag"))) {
     132                    if ((inNode || inWay || inRel) && ln.contains("<tag")) {
    134133                        k = v = "";
    135134                        String[] token = ln.split("k=");
     
    205204                                    ref = Long.parseLong(token.split("[\"\']")[1]);
    206205                                } else if (token.matches("^type=.+")) {
    207                                     type = (token.split("[\"\']")[1]);
     206                                    type = token.split("[\"\']")[1];
    208207                                } else if (token.matches("^role=.+")) {
    209208                                    String[] str = token.split("[\"\']");
    210209                                    if (str.length > 1) {
    211                                         role = (token.split("[\"\']")[1]);
     210                                        role = token.split("[\"\']")[1];
    212211                                    }
    213212                                }
Note: See TracChangeset for help on using the changeset viewer.