Ticket #23112: 23112.core.patch

File 23112.core.patch, 1.2 KB (added by taylor.smock, 2 years ago)

Core changes

  • src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java

    Subject: [PATCH] 23112.core
    ---
    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java b/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
    a b  
    8585
    8686    protected final long now; // when the job started
    8787
    88     private final ICacheAccess<K, V> cache;
     88    protected final ICacheAccess<K, V> cache;
    8989    private ICacheElement<K, V> cacheElement;
    9090    protected V cacheData;
    9191    protected CacheEntryAttributes attributes;
     
    293293
    294294    /**
    295295     * @return true if object was successfully downloaded, false, if there was a loading failure
     296     * @since xxx
    296297     */
    297     private boolean loadObject() {
     298    protected boolean loadObject() {
    298299        if (attributes == null) {
    299300            attributes = new CacheEntryAttributes();
    300301        }