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 11package com .fasterxml .jackson .dataformat .avro .schema ;
22
3- import com .fasterxml .jackson .databind .util .LRUMap ;
43import java .io .File ;
54import java .io .IOException ;
65import java .math .BigDecimal ;
2524import com .fasterxml .jackson .databind .json .JsonMapper ;
2625import com .fasterxml .jackson .databind .jsonFormatVisitors .JsonFormatTypes ;
2726import com .fasterxml .jackson .databind .util .ClassUtil ;
27+ import com .fasterxml .jackson .databind .util .SimpleLookupCache ;
2828
2929public abstract class AvroSchemaHelper
3030{
@@ -417,5 +417,5 @@ public static JsonNode parseDefaultValue(String defaultValue) throws JsonMapping
417417 }
418418
419419 // @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 );
421421}
You can’t perform that action at this time.
0 commit comments