jdk/src/share/classes/com/sun/beans/WeakCache.java
changeset 4382 c0759b1ccb56
parent 1308 db0929bb4cd4
child 5506 202f599c92aa
equal deleted inserted replaced
4381:951e4b7557dc 4382:c0759b1ccb56
    79         }
    79         }
    80         else {
    80         else {
    81             this.map.remove(key);
    81             this.map.remove(key);
    82         }
    82         }
    83     }
    83     }
       
    84 
       
    85     /**
       
    86      * Removes all of the mappings from this cache.
       
    87      */
       
    88     public void clear() {
       
    89         this.map.clear();
       
    90     }
    84 }
    91 }