+ increase size to 256

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2873 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Costin Leau 2010-01-28 16:03:07 +00:00
parent 898a30ae3f
commit 2130d7f7e7
1 changed files with 2 additions and 1 deletions

View File

@ -30,11 +30,12 @@ import org.springframework.core.io.ResourceLoader;
* (i.e. per ".class" file).
*
* @author Juergen Hoeller
* @author Costin Leau
* @since 2.5
*/
public class CachingMetadataReaderFactory extends SimpleMetadataReaderFactory {
private static final int MAX_ENTRIES = 50;
private static final int MAX_ENTRIES = 256;
@SuppressWarnings("serial")
private static final <K, V> Map<K, V> createLRUCache() {