View | Details | Raw Unified | Return to bug 49939
Collapse All | Expand All

(-)java/org/apache/naming/resources/ResourceCache.java (-1 / +1 lines)
Lines 407-413 Link Here
407
    /**
407
    /**
408
     * Insert into the right place in a sorted MapElement array.
408
     * Insert into the right place in a sorted MapElement array.
409
     */
409
     */
410
    private final CacheEntry removeCache(String name) {
410
    public CacheEntry removeCache(String name) {
411
        CacheEntry[] oldCache = cache;
411
        CacheEntry[] oldCache = cache;
412
        int pos = find(oldCache, name);
412
        int pos = find(oldCache, name);
413
        if ((pos != -1) && (name.equals(oldCache[pos].name))) {
413
        if ((pos != -1) && (name.equals(oldCache[pos].name))) {

Return to bug 49939