gen-TPH richtig konvertieren

This commit is contained in:
JanUlrich 2016-05-12 19:48:19 +02:00
parent edda41f546
commit 748f25a2fd

View File

@ -197,7 +197,7 @@ public class UnifyTypeFactory {
public static Type convert(PlaceholderType t) {
TypePlaceholder ret = TypePlaceholder.getInstance(t.getName());
if(ret == null){ //Dieser TPH wurde vom Unifikationsalgorithmus erstellt
ret = TypePlaceholder.fresh(NULL_NODE);
ret = TypePlaceholder.fresh(t.getName(), NULL_NODE);
}
return ret;
}