Skip to content

Commit

Permalink
Merge branch '2.16' of github.com:FasterXML/jackson-databind into 2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 4, 2023
2 parents f3c60ed + ee3b89a commit f847745
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ protected void _addMethods(Map<String, POJOPropertyBuilder> props)
_addGetterMethod(props, m, _annotationIntrospector);
} else if (argCount == 1) { // setters
_addSetterMethod(props, m, _annotationIntrospector);
} else if (argCount == 2) { // any getter?
} else if (argCount == 2) { // any setter?
if (Boolean.TRUE.equals(_annotationIntrospector.hasAnySetter(m))) {
if (_anySetters == null) {
_anySetters = new LinkedList<AnnotatedMethod>();
Expand Down

0 comments on commit f847745

Please sign in to comment.