AbstractTypVar durch RefTypeORTPHOrWildcardOrGeneric ersetzt

This commit is contained in:
Martin Plümicke 2017-05-04 15:10:10 +02:00
parent 150c071c11
commit dfabf8ad71
2 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
package de.dhbwstuttgart.strucTypes5.typeVars;
/**
* Created by sebastian on 14.04.17.
*/
public abstract class TypeVarAbstract {
public boolean equalsForUnify(TypeVarAbstract tv) {
if (tv.equals(this)) {
return true;
}
else {
return false;
}
}
}