Skip to content

Commit a6f6a76

Browse files
committed
Merge branch '2.9'
2 parents a6b0b3d + bba652c commit a6f6a76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ClassNameIdResolver.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class ClassNameIdResolver
1717
extends TypeIdResolverBase
1818
{
1919
private final static String JAVA_UTIL_PKG = "java.util.";
20-
20+
2121
public ClassNameIdResolver(JavaType baseType, TypeFactory typeFactory) {
2222
super(baseType, typeFactory);
2323
}
@@ -28,7 +28,7 @@ public ClassNameIdResolver(JavaType baseType, TypeFactory typeFactory) {
2828
public void registerSubtype(Class<?> type, String name) {
2929
// not used with class name - based resolvers
3030
}
31-
31+
3232
@Override
3333
public String idFromValue(Object value) {
3434
return _idFrom(value, value.getClass(), _typeFactory);
@@ -128,7 +128,7 @@ protected String _idFrom(Object value, Class<?> cls, TypeFactory typeFactory)
128128
public String getDescForKnownTypeIds() {
129129
return "class name used as type id";
130130
}
131-
131+
132132
private static boolean isJavaUtilCollectionClass(String clz, String type)
133133
{
134134
if (clz.startsWith("Collections$")) {

0 commit comments

Comments
 (0)