Skip to content

Commit

Permalink
Minor change for WFCORE-725
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Aug 19, 2015
1 parent 15abc35 commit 24ae5d2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -99,7 +99,7 @@ public Constructor<T> findConstructor(final String... parameterTypes) {
return lookup(new Lookup<Constructor<T>>() { return lookup(new Lookup<Constructor<T>>() {
@Override @Override
public Constructor<T> lookup(ClassReflectionIndex index) { public Constructor<T> lookup(ClassReflectionIndex index) {
final Collection<Constructor> ctors = index.getConstructors(); final Collection<Constructor<?>> ctors = index.getConstructors();
for (Constructor c : ctors) { for (Constructor c : ctors) {
if (Configurator.equals(parameterTypes, c.getParameterTypes())) if (Configurator.equals(parameterTypes, c.getParameterTypes()))
return c; return c;
Expand Down

0 comments on commit 24ae5d2

Please sign in to comment.