Changeset 15460 in josm
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 } -
trunk/test/unit/org/openstreetmap/josm/data/validation/OsmValidatorTest.java
r15459 r15460 33 33 OsmValidator.clearIgnoredErrors(); 34 34 } 35 35 36 /** 36 37 * Tests that {@code OsmValidator} satisfies utility class criterias.
Note:
See TracChangeset
for help on using the changeset viewer.