Skip to content

Commit

Permalink
Fix incorrect comment (#3916)
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-lee authored May 4, 2023
1 parent 23603ea commit ee3b89a
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 ee3b89a

Please sign in to comment.