Skip to content

Commit f062a14

Browse files
committed
... that is, fixing now :)
1 parent 6005b02 commit f062a14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public final <A extends Annotation> A getAnnotation(Class<A> acls) {
107107
public final AnnotationMap getParameterAnnotations(int index)
108108
{
109109
if (_paramAnnotations != null) {
110-
if (index >= 0 && index <= _paramAnnotations.length) {
110+
if (index >= 0 && index < _paramAnnotations.length) {
111111
return _paramAnnotations[index];
112112
}
113113
}

0 commit comments

Comments
 (0)