Skip to content

Commit

Permalink
Fix #23112: Expand visibility of some objects and methods in JCSCache…
Browse files Browse the repository at this point in the history
…dTileLoaderJob for plugin subclasses

git-svn-id: https://josm.openstreetmap.de/svn/trunk@18831 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
taylor.smock committed Sep 18, 2023
1 parent 6a75597 commit 75a82b1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public abstract class JCSCachedTileLoaderJob<K, V extends CacheEntry> implements

protected final long now; // when the job started

private final ICacheAccess<K, V> cache;
protected final ICacheAccess<K, V> cache;
private ICacheElement<K, V> cacheElement;
protected V cacheData;
protected CacheEntryAttributes attributes;
Expand Down Expand Up @@ -293,8 +293,9 @@ protected boolean isCacheElementValid() {

/**
* @return true if object was successfully downloaded, false, if there was a loading failure
* @since 18831
*/
private boolean loadObject() {
protected boolean loadObject() {
if (attributes == null) {
attributes = new CacheEntryAttributes();
}
Expand Down

0 comments on commit 75a82b1

Please sign in to comment.