fix: accidentally committed test print

This commit is contained in:
zaaarf 2023-03-27 18:44:56 +02:00
parent b2b516b2b1
commit 10b5d9e09e
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -39,8 +39,6 @@ public class MethodProxy extends AbstractProxy {
*/
protected MethodProxy(String name, int modifiers, QualifiableProxy parent, Type[] parameters, Type returnType) {
super(name, Type.getMethodDescriptor(returnType, parameters), modifiers, parent, ProxyType.METHOD);
for(Type t : parameters)
System.out.println(t.toString() + t.getSort());
this.parameters = Arrays.stream(parameters)
.map(t -> TypeProxy.from(t, 0))
.toArray(TypeProxy[]::new);