aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/Node.java
diff options
context:
space:
mode:
authorJJ2022-12-27 05:38:32 +0000
committerJJ2022-12-27 15:30:20 +0000
commitc14e53775591cb4d75b486d21f4849552d5c7c8c (patch)
treefc9d67b66107f4965f3173183ec846e4d8e090c4 /src/main/model/html/Node.java
parent0e693fd4814572712a4192cb4f176e71f7a344f7 (diff)
Remove garbage serialization/logging code
Diffstat (limited to 'src/main/model/html/Node.java')
-rw-r--r--src/main/model/html/Node.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/model/html/Node.java b/src/main/model/html/Node.java
index 5c3ea41..9a846ee 100644
--- a/src/main/model/html/Node.java
+++ b/src/main/model/html/Node.java
@@ -1,7 +1,5 @@
package model.html;
-import org.json.JSONObject;
-
/**
* This Node represents an abstract relationship between ElementNode and TextNode.
* It's extremely helpful / necessary for Lists of arbitrary ElementNodes/TextNodes.
@@ -9,7 +7,4 @@ import org.json.JSONObject;
public interface Node {
// Return a representation of the Node. Useful for debugging.
public String getData();
-
- // EFFECTS: returns a serialized form of the data
- public JSONObject serialize();
}