FormalParameter getDiscription Fix

This commit is contained in:
JanUlrich 2016-04-29 16:52:35 +02:00
parent 8134bbb297
commit c2d3fce75e

View File

@ -237,7 +237,7 @@ public class FormalParameter extends SyntaxTreeNode implements Typeable, TypeIns
public String getDescription(){ public String getDescription(){
String ret = ""; String ret = "";
if(this.getType() != null && !(this.getType() instanceof TypePlaceholder)){ if(this.getType() != null && !(this.getType() instanceof TypePlaceholder)){
ret += this.getType().getBytecodeSignature(null, null); ret += this.getType().toString();//getBytecodeSignature(null, null);
} }
return ret+this.getIdentifier(); return ret+this.getIdentifier();
} }