File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
avro/src/main/java/com/fasterxml/jackson/dataformat/avro/schema Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
package com .fasterxml .jackson .dataformat .avro .schema ;
2
2
3
- import com .fasterxml .jackson .databind .util .LRUMap ;
4
3
import java .io .File ;
5
4
import java .io .IOException ;
6
5
import java .math .BigDecimal ;
25
24
import com .fasterxml .jackson .databind .json .JsonMapper ;
26
25
import com .fasterxml .jackson .databind .jsonFormatVisitors .JsonFormatTypes ;
27
26
import com .fasterxml .jackson .databind .util .ClassUtil ;
27
+ import com .fasterxml .jackson .databind .util .SimpleLookupCache ;
28
28
29
29
public abstract class AvroSchemaHelper
30
30
{
@@ -417,5 +417,5 @@ public static JsonNode parseDefaultValue(String defaultValue) throws JsonMapping
417
417
}
418
418
419
419
// @since 2.11.3
420
- private static final LRUMap <String , String > SCHEMA_NAME_CACHE = new LRUMap <>(80 , 800 );
420
+ private static final SimpleLookupCache <String , String > SCHEMA_NAME_CACHE = new SimpleLookupCache <>(80 , 800 );
421
421
}
You can’t perform that action at this time.
0 commit comments