updated with passed tests

This commit is contained in:
-
2019-03-19 00:11:38 -06:00
parent 9f5d9e24f5
commit f0cb7633c6
10 changed files with 115 additions and 75 deletions
@@ -1,26 +0,0 @@
package edu.msudenver.tsp.website.forms;
public class Theorem {
private String theoremName1 ;
private String theoremName2 ;
public String getTheoremName1() {
return theoremName1;
}
public void setTheoremName1(String theoremName) {
this.theoremName1 = theoremName;
}
public String getTheoremName2() {
return theoremName2;
}
public void setTheoremName2(String theoremName) {
this.theoremName2 = theoremName;
}
}