We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ae7f3 commit 2ab3760Copy full SHA for 2ab3760
1 file changed
src/main/java/com/example/solidconnection/term/domain/Term.java
@@ -38,12 +38,4 @@ public Term(String name, boolean isCurrent) {
38
this.name = name;
39
this.isCurrent = isCurrent ? true : null;
40
}
41
-
42
- public void setAsCurrent() {
43
- this.isCurrent = true;
44
- }
45
46
- public void setAsNotCurrent() {
47
- this.isCurrent = null;
48
49
0 commit comments