Changeset 10728 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2016-08-03T23:37:51+02:00 (8 years ago)
Author:
Don-vip
Message:

see #11390 - fix checkstyle violations

Location:
trunk/src/org/openstreetmap/josm
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java

    r10723 r10728  
    4040 * listeners will be gathered and notified, once download job will be finished
    4141 *
     42 * @author Wiktor Niesiobędzki
    4243 * @param <K> cache entry key type
    4344 * @param <V> cache value type
    44  * @author Wiktor Niesiobędzki
    4545 * @since 8168
    4646 */
  • trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java

    r10716 r10728  
    221221    /**
    222222     * A predicate filtering primitives that are not deleted and not incomplete.
     223     * @deprecated use lambda instead
    223224     */
    224225    @Deprecated
     
    228229    /**
    229230     * A predicate filtering primitives that are not deleted and not incomplete and that are not a relation.
     231     * @deprecated use lambda instead
    230232     */
    231233    @Deprecated
     
    272274     *
    273275     * @see #FLAG_HAS_DIRECTIONS
     276     * @deprecated use {@code directionKeys::match}
    274277     */
    275278    @Deprecated
  • trunk/src/org/openstreetmap/josm/data/osm/Relation.java

    r10717 r10728  
    1010import java.util.Map;
    1111import java.util.Set;
    12 import java.util.function.Function;
    1312
    1413import org.openstreetmap.josm.Main;
  • trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java

    r10710 r10728  
    584584                }
    585585                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);
    587588                } else {
    588589                    return new TestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, primitives);
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java

    r10717 r10728  
    55
    66import java.util.Arrays;
    7 import java.util.function.Function;
    87
    98import org.openstreetmap.josm.Main;
Note: See TracChangeset for help on using the changeset viewer.