Skip to content

Commit f315f1b

Browse files
committed
Sync up to changes in jackson-core/3.0
1 parent a5b530e commit f315f1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ public BeanPropertyMap initMatcher(TokenStreamFactory tsf)
305305
}
306306
// `true` -> yes, they are intern()ed alright
307307
if (_caseInsensitive) {
308-
_fieldMatcher = tsf.constructCIFieldNameMatcher(names, true);
308+
_fieldMatcher = tsf.constructCIFieldNameMatcher(names, true, _locale);
309309
} else {
310310
_fieldMatcher = tsf.constructFieldNameMatcher(names, true);
311311
}

0 commit comments

Comments
 (0)