mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
fix: accidentally committed test print
This commit is contained in:
parent
b2b516b2b1
commit
10b5d9e09e
1 changed files with 0 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue