Changeset 33193 in osm
- Timestamp:
- 2017-03-23T12:26:00+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r33177 r33193 252 252 253 253 public static void rules() { 254 // CHECKSTYLE.OFF: NeedBraces254 try { 255 255 if ((Renderer.context.ruleset() == RuleSet.ALL) || (Renderer.context.ruleset() == RuleSet.BASE)) { 256 256 if (testObject(Obj.LNDARE)) for (Feature f : objects) if (testFeature(f)) areas(); … … 347 347 if (testObject(Obj.BCNSPP)) for (Feature f : objects) if (testFeature(f)) beacons(); 348 348 } 349 // CHECKSTYLE.ON: NeedBraces 349 } catch (Exception e) { 350 return; // Just skip this pass 351 } 350 352 } 351 353
Note:
See TracChangeset
for help on using the changeset viewer.