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:
Gary D. Gregory 2013-11-19 00:36:51 +00:00
parent aa0c114ac9
commit bae09b4838
1 changed files with 1 additions and 2 deletions

View File

@ -79,9 +79,8 @@ public class InvokerTransformer<I, O> implements Transformer<I, O>, Serializable
}
if (paramTypes == null || paramTypes.length == 0) {
return new InvokerTransformer<I, O>(methodName);
} else {
return new InvokerTransformer<I, O>(methodName, paramTypes, args);
}
return new InvokerTransformer<I, O>(methodName, paramTypes, args);
}
/**