Issue #79 Fixing small error in ArrayType

This commit is contained in:
sjaak 2014-01-04 22:08:52 +01:00 committed by Gunnar Morling
parent 560855004b
commit 094b9c3e9e

View File

@ -138,8 +138,7 @@ public class MethodMatcher {
public Boolean visitArray(ArrayType t, TypeMirror p) {
if ( p.getKind().equals( TypeKind.ARRAY) ) {
t.getComponentType().accept( this, ( (ArrayType) p ).getComponentType() );
return Boolean.TRUE;
return t.getComponentType().accept( this, ( (ArrayType) p ).getComponentType() );
}
else {
return Boolean.FALSE;