This commit is contained in:
JanUlrich 2018-01-10 12:14:20 +01:00
parent 672373fc8d
commit b1b1cfdc54

View File

@ -31,6 +31,7 @@ public class RefType extends RefTypeOrTPHOrWildcardOrGeneric
public String toString(){ public String toString(){
String params = ""; String params = "";
if(parameter.size()>0){ if(parameter.size()>0){
params += "<";
Iterator<RefTypeOrTPHOrWildcardOrGeneric> it = parameter.iterator(); Iterator<RefTypeOrTPHOrWildcardOrGeneric> it = parameter.iterator();
while(it.hasNext()){ while(it.hasNext()){
RefTypeOrTPHOrWildcardOrGeneric param = it.next(); RefTypeOrTPHOrWildcardOrGeneric param = it.next();