Nested "enum"s should not be declared static

Closes gh-1759
This commit is contained in:
igor-suhorukov 2018-03-29 09:43:56 +03:00 committed by Stephane Nicoll
parent f9e6ea5482
commit 8d2f64fe2d
1 changed files with 1 additions and 1 deletions

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,