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

fix UnnecessaryParentheses warnings

Location:
applications/editors/josm/plugins/seachart/src/s57
Files:
4 edited

Legend:

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

    r32909 r34652  
    908908                            first = false;
    909909                        } else {
    910                             sarc += (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));
     910                            sarc += Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat));
    911911                        }
    912912                        llat = lat;
     
    931931                            first = false;
    932932                        } else {
    933                             sarc = (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));
     933                            sarc = Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat));
    934934                            if (sarc > harc)
    935935                                break;
  • applications/editors/josm/plugins/seachart/src/s57/S57obj.java

    r32907 r34652  
    163163
    164164    public static Obj enumType(String type) { // Convert OSM object string to SCM object enumeration
    165         if ((type != null) && !type.isEmpty() && (StrObj.containsKey(type)))
     165        if (type != null && !type.isEmpty() && StrObj.containsKey(type))
    166166            return StrObj.get(type);
    167167        else
  • 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                                }
  • applications/editors/josm/plugins/seachart/src/s57/S57val.java

    r33936 r34652  
    16541654
    16551655    public static Enum<?> unknAtt(Att att) {
    1656         return (Enum<?>) (keys.get(att).map.keySet().toArray()[0]);
     1656        return (Enum<?>) keys.get(att).map.keySet().toArray()[0];
    16571657    }
    16581658}
Note: See TracChangeset for help on using the changeset viewer.