formatting

This commit is contained in:
Hannes Janetzek
2013-02-04 20:14:58 +01:00
parent 303e0cb4ce
commit f2b7a9fdf8
72 changed files with 403 additions and 240 deletions

View File

@@ -18,9 +18,11 @@ import java.util.LinkedHashMap;
import java.util.Map;
/**
* An LRUCache with a fixed size and an access-order policy. Old mappings are automatically removed from the cache when
* new mappings are added. This implementation uses an {@link LinkedHashMap} internally.
*
* An LRUCache with a fixed size and an access-order policy. Old mappings are
* automatically removed from the cache when
* new mappings are added. This implementation uses an {@link LinkedHashMap}
* internally.
*
* @param <K>
* the type of the map key, see {@link Map}.
* @param <V>