Changeset 31343 in osm for applications/editors/josm/plugins/seachart/src/render/Rules.java
- Timestamp:
- 2015-07-06T16:44:58+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r31044 r31343 887 887 int i = 0; 888 888 for (AttMap atts : objs.values()) { 889 if (atts.get(Att.MARSYS) != null) sys = (MarSYS) atts.get(Att.MARSYS).val;889 if (atts.get(Att.MARSYS) != null) sys = (MarSYS)(atts.get(Att.MARSYS).val); 890 890 CatNMK cat = CatNMK.NMK_UNKN; 891 if (atts.get(Att.CATNMK) != null) cat = (CatNMK) atts.get(Att.CATNMK).val;891 if (atts.get(Att.CATNMK) != null) cat = (CatNMK)(atts.get(Att.CATNMK).val); 892 892 Symbol sym = Notices.getNotice(cat, sys); 893 893 Handle h = Handle.CC;
Note:
See TracChangeset
for help on using the changeset viewer.