We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6005b02 commit f062a14Copy full SHA for f062a14
src/main/java/com/fasterxml/jackson/databind/introspect/AnnotatedWithParams.java
@@ -107,7 +107,7 @@ public final <A extends Annotation> A getAnnotation(Class<A> acls) {
107
public final AnnotationMap getParameterAnnotations(int index)
108
{
109
if (_paramAnnotations != null) {
110
- if (index >= 0 && index <= _paramAnnotations.length) {
+ if (index >= 0 && index < _paramAnnotations.length) {
111
return _paramAnnotations[index];
112
}
113
0 commit comments