put static method
Implementation
static void put(AnyDecorationCacheKey key, AnyContour contour) {
_contours.remove(key);
_contours[key] = contour;
while (_contours.length > limit) {
_contours.remove(_contours.keys.first);
}
}
static void put(AnyDecorationCacheKey key, AnyContour contour) {
_contours.remove(key);
_contours[key] = contour;
while (_contours.length > limit) {
_contours.remove(_contours.keys.first);
}
}