Revert "AbstractTypVar durch RefTypeORTPHOrWildcardOrGeneric ersetzt"
This reverts commit dfabf8ad7188688b8fb8e052959151ae10025828.
This commit is contained in:
parent
2f6680354f
commit
fd1a434037
src/de/dhbwstuttgart
@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user