aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/html/Node.java
diff options
context:
space:
mode:
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();
}