Fehler bei TPH Generierung behoben

This commit is contained in:
JanUlrich 2016-04-21 14:27:32 +02:00
parent 0ca4f16c49
commit 16cbf8e1b7

View File

@ -193,7 +193,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(t.getName(), NULL_NODE);
ret = TypePlaceholder.fresh(NULL_NODE);
}
return ret;
}