Correct parameter index boundary in exception message

Issue: SPR-14466
This commit is contained in:
Juergen Hoeller
2016-07-14 22:29:14 +02:00
parent e431624e84
commit e2c7653da4

View File

@@ -668,7 +668,7 @@ public class MethodParameter {
private static int validateIndex(Executable executable, int parameterIndex) {
int count = executable.getParameterCount();
Assert.isTrue(parameterIndex < count, () -> "Parameter index needs to be between 0 and " + (count - 1));
Assert.isTrue(parameterIndex < count, () -> "Parameter index needs to be between -1 and " + (count - 1));
return parameterIndex;
}