Skip to content

Commit 5f8c69e

Browse files
committed
Minor fix to #426 to still reproduce the issue (need equivalent visibility)
1 parent 04c33a5 commit 5f8c69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/fasterxml/jackson/failing/TestUnknownProperty426.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ static class User {
1515
public String firstName;
1616
Integer userId;
1717

18-
void setUserId(CharSequence id) {
18+
public void setUserId(CharSequence id) {
1919
// 21-Dec-2015, tatu: With a fix in 2.7, use of String would not
2020
// trigger the problem, so use CharSequence...
2121
setUserId(new Integer(id.toString()));

0 commit comments

Comments
 (0)