forked from JavaTX/JavaCompilerCore
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 277a360c65 | |||
| fd1a434037 | |||
| 2f6680354f |
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user