Browse Source

Nested "enum"s should not be declared static

Closes gh-1759
pull/1773/head
igor-suhorukov 7 years ago committed by Stephane Nicoll
parent
commit
8d2f64fe2d
  1. 2
      spring-expression/src/main/java/org/springframework/expression/spel/support/ReflectionHelper.java

2
spring-expression/src/main/java/org/springframework/expression/spel/support/ReflectionHelper.java

@ -373,7 +373,7 @@ public class ReflectionHelper { @@ -373,7 +373,7 @@ public class ReflectionHelper {
}
static enum ArgumentsMatchKind {
enum ArgumentsMatchKind {
/** An exact match is where the parameter types exactly match what the method/constructor is expecting */
EXACT,

Loading…
Cancel
Save