Skip to content

Commit

Permalink
fixed type for array in standard form
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Nov 17, 2023
1 parent fca9872 commit 19b6473
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private static Predicate<Method> featureBasedMethodPredicate(
// generate _EType so we must search for methods polymorphically both with
// _eType (which is what one would manually write) and
// _EType (which is what the DSL generates)
char chars[] = featureName.toCharArray();
char[] chars = featureName.toCharArray();
chars[0] = Character.toUpperCase(chars[0]);
final String alternativePredicateMethodName = methodNamePrefix + new String(chars);
return new MethodNameFilter(predicateMethodName, numOfParams, numOfParams) {
Expand Down

0 comments on commit 19b6473

Please sign in to comment.