Changeset 10728 in josm
- Timestamp:
- 2016-08-03T23:37:51+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
r10723 r10728 40 40 * listeners will be gathered and notified, once download job will be finished 41 41 * 42 * @author Wiktor Niesiobędzki 42 43 * @param <K> cache entry key type 43 44 * @param <V> cache value type 44 * @author Wiktor Niesiobędzki45 45 * @since 8168 46 46 */ -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r10716 r10728 221 221 /** 222 222 * A predicate filtering primitives that are not deleted and not incomplete. 223 * @deprecated use lambda instead 223 224 */ 224 225 @Deprecated … … 228 229 /** 229 230 * A predicate filtering primitives that are not deleted and not incomplete and that are not a relation. 231 * @deprecated use lambda instead 230 232 */ 231 233 @Deprecated … … 272 274 * 273 275 * @see #FLAG_HAS_DIRECTIONS 276 * @deprecated use {@code directionKeys::match} 274 277 */ 275 278 @Deprecated -
trunk/src/org/openstreetmap/josm/data/osm/Relation.java
r10717 r10728 10 10 import java.util.Map; 11 11 import java.util.Set; 12 import java.util.function.Function;13 12 14 13 import org.openstreetmap.josm.Main; -
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r10710 r10728 584 584 } 585 585 if (fix != null) { 586 return new FixableTestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, primitives, fix); 586 return new FixableTestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, 587 primitives, fix); 587 588 } else { 588 589 return new TestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, primitives); -
trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java
r10717 r10728 5 5 6 6 import java.util.Arrays; 7 import java.util.function.Function;8 7 9 8 import org.openstreetmap.josm.Main;
Note:
See TracChangeset
for help on using the changeset viewer.