Changeset 15460 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2019-10-16T22:25:23+02:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/JosmTemplatedTMSTileSource.java
r15456 r15460 9 9 /** 10 10 * JOSM wrapper class that uses min/max zoom settings from imagery settings instead of JMapViewer defaults 11 * 11 * @since 15456 12 12 */ 13 13 public class JosmTemplatedTMSTileSource extends TemplatedTMSTileSource { … … 15 15 /** 16 16 * Creates TMS tilesource based on tilesource info 17 * @param info 17 * @param info tile source info 18 18 */ 19 19 public JosmTemplatedTMSTileSource(TileSourceInfo info) { -
trunk/src/org/openstreetmap/josm/data/validation/OsmValidator.java
r15459 r15460 262 262 * Make sure that we don't keep single entries for a "group ignore". 263 263 */ 264 protectedstatic void cleanupIgnoredErrors() {264 static void cleanupIgnoredErrors() { 265 265 if (ignoredErrors.size() > 1) { 266 266 List<String> toRemove = new ArrayList<>(); … … 661 661 * For unit tests 662 662 */ 663 protectedstatic void clearIgnoredErrors() {663 static void clearIgnoredErrors() { 664 664 ignoredErrors.clear(); 665 665 }
Note:
See TracChangeset
for help on using the changeset viewer.