Skip to content

Commit e230f61

Browse files
committed
Remove unnecessary type parameters
1 parent 3161909 commit e230f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ protected Map<AnnotatedWithParams,BeanPropertyDefinition[]> _findCreatorsFromPro
321321

322322
if (defs == null) {
323323
if (result.isEmpty()) { // since emptyMap is immutable need to create a 'real' one
324-
result = new LinkedHashMap<AnnotatedWithParams,BeanPropertyDefinition[]>();
324+
result = new LinkedHashMap<>();
325325
}
326326
defs = new BeanPropertyDefinition[owner.getParameterCount()];
327327
result.put(owner, defs);

0 commit comments

Comments
 (0)