Skip to content

Commit 9c51b81

Browse files
authored
Remove one deprecated (in 2.12) internal method to simplify code flow (#5062)
1 parent 13e3130 commit 9c51b81

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/main/java/com/fasterxml/jackson/databind/introspect/POJOPropertyBuilder.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -933,14 +933,11 @@ public void removeIgnored()
933933
_ctorParameters = _removeIgnored(_ctorParameters);
934934
}
935935

936-
@Deprecated // since 2.12
937-
public JsonProperty.Access removeNonVisible(boolean inferMutators) {
938-
return removeNonVisible(inferMutators, null);
939-
}
940-
941936
/**
942937
* @param inferMutators Whether mutators can be "pulled in" by visible
943938
* accessors or not.
939+
* @param parent (nullable) Collector to add name ignorals to, if that is
940+
* desired.
944941
*
945942
* @since 2.12 (earlier had different signature)
946943
*/

0 commit comments

Comments
 (0)