aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/BrowserState.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/BrowserState.java')
-rw-r--r--src/main/model/BrowserState.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/model/BrowserState.java b/src/main/model/BrowserState.java
index bb15abf..da21c41 100644
--- a/src/main/model/BrowserState.java
+++ b/src/main/model/BrowserState.java
@@ -1,8 +1,5 @@
package model;
-import model.util.Event;
-import model.util.EventLog;
-
import java.util.ArrayDeque;
// This BrowserState function collects the stateful portions of the browser into one modelable class.
@@ -37,13 +34,11 @@ public class BrowserState {
if (!this.tabs.contains(added)) {
this.tabs.add(added);
}
- EventLog.getInstance().logEvent(new Event("Added tab " + added + " to tablist"));
}
// MODIFIES: this
// EFFECTS: removes a tab from the tablist
public void removeTab(String removed) {
this.tabs.remove(removed);
- EventLog.getInstance().logEvent(new Event("Removed tab " + removed + " from tablist"));
}
}