MatrixTest funktioniert

This commit is contained in:
Fayez Abu Alia 2018-09-26 16:25:52 +02:00
parent d3d1d658b8
commit 3c7b1451d4

View File

@ -777,11 +777,14 @@ public class BytecodeGenMethod implements StatementVisitor {
pos = checkCast.indexOf("<"); pos = checkCast.indexOf("<");
mv.visitTypeInsn(Opcodes.CHECKCAST,checkCast.substring(0,pos)); mv.visitTypeInsn(Opcodes.CHECKCAST,checkCast.substring(0,pos));
} }
}
if(isBinaryExp) if(isBinaryExp)
doUnboxing(getResolvedType(methodCall.getType())); doUnboxing(getResolvedType(methodCall.getType()));
}
if(methodRefl == null) {
if(isBinaryExp)
doUnboxing(getResolvedType(methodCall.getType()));
}
} }