Changeset 32137 in osm for applications/editors/josm/plugins
- Timestamp:
- 2016-03-31T18:25:07+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/indoorhelper
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper
-
Property svn:ignore
set to
.gitignore
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/indoorhelper/src/controller/IndoorHelperController.java
r32134 r32137 408 408 MapListSetting validatorMapListSetting = (MapListSetting) settings. 409 409 get("validator.org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker.entries"); 410 List<Map<String, String>> validatorMaps; 411 validatorMaps = validatorMapListSetting.getValue(); 410 List<Map<String, String>> validatorMaps = new ArrayList<>(); 411 if(validatorMapListSetting!=null){ 412 validatorMaps = validatorMapListSetting.getValue(); 413 } 412 414 413 415 MapListSetting styleMapListSetting = (MapListSetting) settings. 414 416 get("mappaint.style.entries"); 415 List<Map<String, String>> styleMaps; 416 styleMaps = styleMapListSetting.getValue(); 417 417 List<Map<String, String>> styleMaps = new ArrayList<>(); 418 if(styleMapListSetting != null){ 419 styleMaps = styleMapListSetting.getValue(); 420 } 421 418 422 if(enabled){ 419 423 //set the validator active
Note:
See TracChangeset
for help on using the changeset viewer.