Changeset 33632 in osm for applications/editors/josm
- Timestamp:
- 2017-09-19T18:33:50+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/controller/IndoorHelperController.java
r32637 r33632 24 24 import java.awt.event.ItemListener; 25 25 import java.util.ArrayList; 26 import java.util.Collection; 26 27 import java.util.Collections; 27 28 import java.util.HashMap; … … 34 35 import org.openstreetmap.josm.actions.ValidateAction; 35 36 import org.openstreetmap.josm.data.osm.Tag; 36 import org.openstreetmap.josm.data.preferences.MapListSetting;37 import org.openstreetmap.josm.data.preferences.Setting;38 37 import org.openstreetmap.josm.data.validation.OsmValidator; 39 38 import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker; … … 395 394 */ 396 395 private void setPluginPreferences(boolean enabled) { 397 Map<String, Setting<?>> settings = Main.pref.getAllSettings(); 398 399 MapListSetting validatorMapListSetting = (MapListSetting) settings. 400 get("validator.org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker.entries"); 401 List<Map<String, String>> validatorMaps = new ArrayList<>(); 402 if (validatorMapListSetting != null) { 403 validatorMaps = validatorMapListSetting.getValue(); 404 } 405 406 MapListSetting styleMapListSetting = (MapListSetting) settings. 407 get("mappaint.style.entries"); 408 List<Map<String, String>> styleMaps = new ArrayList<>(); 409 if (styleMapListSetting != null) { 410 styleMaps = styleMapListSetting.getValue(); 411 } 396 Collection<Map<String, String>> validatorMaps = 397 Main.pref.getListOfStructs("validator.org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker.entries", 398 new ArrayList<>()); 399 Collection<Map<String, String>> styleMaps = 400 Main.pref.getListOfStructs("mappaint.style.entries", new ArrayList<>()); 412 401 413 402 if (enabled) {
Note:
See TracChangeset
for help on using the changeset viewer.