Generify pt 1

This commit is contained in:
Brady
2018-10-30 15:51:19 -05:00
parent c887b27df9
commit f2f806669c
27 changed files with 146 additions and 93 deletions

View File

@@ -17,5 +17,9 @@
package tenor;
public class SingularTaskNode {
public abstract class SingularTaskNode extends TaskNode implements ISingularTaskNode {
public SingularTaskNode(DependencyType type) {
super(type);
}
}