Merge pull request #1759 from igor-suhorukov

* pr/1759:
  Nested "enum"s should not be declared static
This commit is contained in:
Stephane Nicoll
2018-03-29 09:13:18 +02:00

View File

@@ -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,