Skip to content

Commit c2b4861

Browse files
committed
Merge branch '2.x' into 3.x
2 parents 5669cfb + 41437fc commit c2b4861

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

release-notes/CREDITS-2.x

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,3 +1974,7 @@ Michael Reiche (@mikereiche)
19741974
* Reported #5271: `EnumDeserializer` fails to deserialize Enums with @JsonValue - uses table
19751975
with name() key instead of @JsonValue key
19761976
(2.20.0)
1977+
1978+
Johnny Lim (@izeye)
1979+
* Reported #5293: Fix minor typo in `PropertyBindingException.getMessageSuffix()`
1980+
(2.21.0)

release-notes/VERSION-2.x

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Project: jackson-databind
66

77
2.21.0 (not yet released)
88

9-
No change since 2.20
9+
#5293: Fix minor typo in `PropertyBindingException.getMessageSuffix()`
10+
(reported by Johny L)
1011

1112
2.20.0 (28-Aug-2025)
1213

src/main/java/tools/jackson/databind/exc/PropertyBindingException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public String messageSuffix()
9191
}
9292
}
9393
}
94-
sb.append("])");
94+
sb.append(")");
9595
_propertiesAsString = suffix = sb.toString();
9696
}
9797
return suffix;

0 commit comments

Comments
 (0)