We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 381c8a9 commit 702d43dCopy full SHA for 702d43d
src/behavioral/memento/java/io/github/hooj0/memento/editor/support/TextEditor.java
@@ -21,6 +21,11 @@ public class TextEditor implements Editor {
21
public String getContent() {
22
return this.content;
23
}
24
+
25
+ @Override
26
+ public void setContent(String content) {
27
+ this.content = content;
28
+ }
29
30
@Override
31
public Memento save() {
@@ -31,9 +36,4 @@ public Memento save() {
36
public void restore(Memento memento) {
32
37
this.content = memento.getContent();
33
38
34
-
35
- @Override
- public void setContent(String content) {
- this.content = content;
- }
39
0 commit comments