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

fix UnnecessaryParentheses warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.