Changeset 31343 in osm for applications/editors/josm/plugins/seachart/src/render/Signals.java
- Timestamp:
- 2015-07-06T16:44:58+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Signals.java
r31063 r31343 283 283 284 284 public static void lights(Feature feature) { 285 Enum<ColCOL> col = null; 285 /* Enum<ColCOL> col = null; 286 286 Enum<ColCOL> tcol = null; 287 287 ObjTab lights = feature.objs.get(Obj.LIGHTS); … … 412 412 AttMap m0 = group.get(i); 413 413 AttMap m1 = group.get(i+1); 414 if (((m0.containsKey(Att.VALNMR) && m1.containsKey(Att.VALNMR) && ((int)m0.get(Att.VALNMR).val < (int)m1.get(Att.VALNMR).val)))414 if (((m0.containsKey(Att.VALNMR) && m1.containsKey(Att.VALNMR) && ((int)(m0.get(Att.VALNMR).val) < (int)(m1.get(Att.VALNMR).val)))) 415 415 || (!m0.containsKey(Att.VALNMR) && m1.containsKey(Att.VALNMR))) { 416 416 AttMap tmp = group.remove(i); … … 421 421 } 422 422 } 423 } 423 */ } 424 424 425 425 }
Note:
See TracChangeset
for help on using the changeset viewer.
