Statement unnecessarily nested within else clause.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543247 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aa0c114ac9
commit
bae09b4838
|
@ -79,9 +79,8 @@ public class InvokerTransformer<I, O> implements Transformer<I, O>, Serializable
|
||||||
}
|
}
|
||||||
if (paramTypes == null || paramTypes.length == 0) {
|
if (paramTypes == null || paramTypes.length == 0) {
|
||||||
return new InvokerTransformer<I, O>(methodName);
|
return new InvokerTransformer<I, O>(methodName);
|
||||||
} else {
|
|
||||||
return new InvokerTransformer<I, O>(methodName, paramTypes, args);
|
|
||||||
}
|
}
|
||||||
|
return new InvokerTransformer<I, O>(methodName, paramTypes, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue