Skip to content

Commit ff16128

Browse files
committed
minor change to max cache size
1 parent ceadbc9 commit ff16128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/DeserializerCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public final class DeserializerCache
2525
private static final long serialVersionUID = 3L;
2626

2727
/**
28-
* By default allow caching of up to 4000 deserializers.
28+
* By default allow caching of up to 1000 deserializers.
2929
*/
30-
public final static int DEFAULT_MAX_CACHED = 4000;
30+
public final static int DEFAULT_MAX_CACHED = 1000;
3131

3232
/*
3333
/**********************************************************************

0 commit comments

Comments
 (0)