Skip to content

Commit d5a8271

Browse files
committed
Manual fix for #4176 for 3.0
1 parent bcc7f00 commit d5a8271

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/tools/jackson/databind/introspect/VisibilityChecker.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ public class VisibilityChecker
4848
Visibility.PUBLIC_ONLY, // getter
4949
Visibility.PUBLIC_ONLY, // is-getter
5050
Visibility.PUBLIC_ONLY, // setter
51-
Visibility.NON_PRIVATE, // creator
52-
Visibility.NON_PRIVATE // scalar-constructor (1 arg)
51+
// 26-Oct-2023, tatu: For [databind#4175] change from NON_PRIVATE to ANY
52+
Visibility.ANY, // creator
53+
Visibility.ANY // scalar-constructor (1 arg)
5354
);
5455

5556
protected final Visibility _fieldMinLevel;

0 commit comments

Comments
 (0)