Per sonar, move array indicator to the type rather than property name.

This commit is contained in:
Jeremy Landis 2015-04-02 22:44:00 -04:00
parent 10c170c927
commit eb4e1b8f48
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public class JavassistHelper {
*/
public static String getSignature(CtBehavior method) throws NotFoundException {
CtClass parameterTypes[] = method.getParameterTypes();
CtClass[] parameterTypes = method.getParameterTypes();
CodeAttribute codeAttribute = method.getMethodInfo().getCodeAttribute();