Skip to content

Commit 702d43d

Browse files
committed
✨ 🍱 ♻️ Changed text editor implements editor
1 parent 381c8a9 commit 702d43d

File tree

1 file changed

+5
-5
lines changed
  • src/behavioral/memento/java/io/github/hooj0/memento/editor/support

1 file changed

+5
-5
lines changed

src/behavioral/memento/java/io/github/hooj0/memento/editor/support/TextEditor.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ public class TextEditor implements Editor {
2121
public String getContent() {
2222
return this.content;
2323
}
24+
25+
@Override
26+
public void setContent(String content) {
27+
this.content = content;
28+
}
2429

2530
@Override
2631
public Memento save() {
@@ -31,9 +36,4 @@ public Memento save() {
3136
public void restore(Memento memento) {
3237
this.content = memento.getContent();
3338
}
34-
35-
@Override
36-
public void setContent(String content) {
37-
this.content = content;
38-
}
3939
}

0 commit comments

Comments
 (0)