Skip to content

Commit fd26095

Browse files
committed
Merge branch '2.13' into 2.14
2 parents 37767b3 + f0244d7 commit fd26095

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

release-notes/VERSION-2.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ Project: jackson-databind
8383

8484
#3659: Improve testing (likely via CI) to try to ensure compatibility with
8585
specific Android SDKs
86+
#3661: Jackson 2.13 uses Class.getTypeName() that is only available on Android SDK 26
87+
(with fix works on ASDK 24)
8688

8789
2.13.4.2 (13-Oct-2022)
8890

src/main/java/com/fasterxml/jackson/databind/util/ClassUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ private static Field locateField(Class<?> fromClass, String expectedName, Class<
14101410
}
14111411
// If not found, indicate with exception
14121412
throw new IllegalStateException(String.format(
1413-
"No field named '%s' in class '%s'", expectedName, fromClass.getTypeName()));
1413+
"No field named '%s' in class '%s'", expectedName, fromClass.getName()));
14141414
}
14151415
}
14161416

0 commit comments

Comments
 (0)