Ignore:
Timestamp:
2015-12-21T16:57:17+01:00 (10 years ago)
Author:
malcolmh
Message:

[seachart] add jbasemap

File:
1 edited

Legend:

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

    r31738 r31846  
    2929        }
    3030
    31         private static final EnumMap<Obj, Integer> ObjS57 = new EnumMap<Obj, Integer>(Obj.class);
     31        private static final EnumMap<Obj, Integer> ObjS57 = new EnumMap<>(Obj.class);
    3232        static {
    3333                ObjS57.put(Obj.UNKOBJ,0);
     
    6666        }
    6767
    68         private static final EnumMap<Obj, Integer> ObjIENC = new EnumMap<Obj, Integer>(Obj.class);
     68        private static final EnumMap<Obj, Integer> ObjIENC = new EnumMap<>(Obj.class);
    6969        static {
    7070                ObjIENC.put(Obj.UNKOBJ, 0);
     
    8181        }
    8282
    83         private static final EnumMap<Obj, String> ObjStr = new EnumMap<Obj, String>(Obj.class);
     83        private static final EnumMap<Obj, String> ObjStr = new EnumMap<>(Obj.class);
    8484        static {
    8585                ObjStr.put(Obj.UNKOBJ, "");     ObjStr.put(Obj.AIRARE, "airfield");     ObjStr.put(Obj.ACHBRT, "anchor_berth"); ObjStr.put(Obj.ACHARE, "anchorage");
     
    130130        }
    131131       
    132         private static final HashMap<String, Obj> StrObj = new HashMap<String, Obj>();
     132        private static final HashMap<String, Obj> StrObj = new HashMap<>();
    133133        static {
    134134                for (Map.Entry<Obj, String> entry : ObjStr.entrySet()) {
Note: See TracChangeset for help on using the changeset viewer.