Ignore:
Timestamp:
2016-09-03T16:52:05+02:00 (10 years ago)
Author:
donvip
Message:

fix some error-prone warnings

File:
1 edited

Legend:

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

    r32907 r32909  
    77
    88import s57.S57att.Att;
     9import s57.S57map.Snode;
    910import s57.S57obj.Obj;
    1011import s57.S57val.CatBUA;
     
    103104        boolean inWay = false;
    104105        boolean inRel = false;
    105         map.nodes.put(1L, map.new Snode());
    106         map.nodes.put(2L, map.new Snode());
    107         map.nodes.put(3L, map.new Snode());
    108         map.nodes.put(4L, map.new Snode());
     106        map.nodes.put(1L, new Snode());
     107        map.nodes.put(2L, new Snode());
     108        map.nodes.put(3L, new Snode());
     109        map.nodes.put(4L, new Snode());
    109110
    110111        String ln;
Note: See TracChangeset for help on using the changeset viewer.