Ignore:
Timestamp:
2016-03-13T21:36:47+01:00 (8 years ago)
Author:
Don-vip
Message:

remove unused code

Location:
trunk/src/org/openstreetmap/josm/data/cache
Files:
2 edited

Legend:

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

    r8795 r9983  
    1111 * @param <K> cache key type
    1212 */
    13 public interface ICachedLoaderJob<K> {
     13public interface ICachedLoaderJob<K> extends Runnable {
    1414    /**
    1515     * returns cache entry key
     
    2626     */
    2727    URL getUrl() throws IOException;
    28 
    29     /**
    30      * implements the main algorithm for fetching
    31      */
    32     void run();
    3328
    3429    /**
  • trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java

    r9709 r9983  
    4545 * @since 8168
    4646 */
    47 public abstract class JCSCachedTileLoaderJob<K, V extends CacheEntry> implements ICachedLoaderJob<K>, Runnable {
     47public abstract class JCSCachedTileLoaderJob<K, V extends CacheEntry> implements ICachedLoaderJob<K> {
    4848    private static final Logger log = FeatureAdapter.getLogger(JCSCachedTileLoaderJob.class.getCanonicalName());
    4949    protected static final long DEFAULT_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 7; // 7 days
Note: See TracChangeset for help on using the changeset viewer.