Changeset 33195 in osm for applications/editors/josm/plugins/seachart/src/render/Rules.java
- Timestamp:
- 2017-03-24T10:46:53+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r33193 r33195 7 7 import java.text.DecimalFormat; 8 8 import java.util.ArrayList; 9 import java.util.ConcurrentModificationException; 9 10 import java.util.EnumMap; 10 11 import java.util.HashMap; … … 251 252 } 252 253 253 public static voidrules() {254 public static boolean rules() { 254 255 try { 255 256 if ((Renderer.context.ruleset() == RuleSet.ALL) || (Renderer.context.ruleset() == RuleSet.BASE)) { … … 347 348 if (testObject(Obj.BCNSPP)) for (Feature f : objects) if (testFeature(f)) beacons(); 348 349 } 350 } catch (ConcurrentModificationException e) { 351 return false; 349 352 } catch (Exception e) { 350 return ; // Just skip this pass353 return true; 351 354 } 355 return true; 352 356 } 353 357
Note:
See TracChangeset
for help on using the changeset viewer.
