Skip to content

Commit b0a06b8

Browse files
committed
Merge branch '6.2.x'
2 parents c41147a + f376d1b commit b0a06b8

File tree

1 file changed

+1
-2
lines changed
  • spring-expression/src/main/java/org/springframework/expression/spel

1 file changed

+1
-2
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/CodeFlow.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -687,9 +687,8 @@ public static boolean isPrimitiveOrUnboxableSupportedNumber(@Nullable String des
687687
* Determine whether the given number is to be considered as an integer
688688
* for the purposes of a numeric operation at the bytecode level.
689689
* @param number the number to check
690-
* @return {@code true} if it is an {@link Integer}, {@link Short} or {@link Byte}
690+
* @return {@code true} if it is an {@link Integer}, {@link Short}, or {@link Byte}
691691
*/
692-
@Contract("null -> false")
693692
public static boolean isIntegerForNumericOp(Number number) {
694693
return (number instanceof Integer || number instanceof Short || number instanceof Byte);
695694
}

0 commit comments

Comments
 (0)