66import fi .helsinki .cs .tmc .model .CourseDb ;
77import fi .helsinki .cs .tmc .model .ServerAccess ;
88import fi .helsinki .cs .tmc .model .TmcSettings ;
9- import fi .helsinki .cs .tmc .spyware .eventsources .OutputActionCaptor ;
10- import fi .helsinki .cs .tmc .spyware .eventsources .OutputActionEventSource ;
119import fi .helsinki .cs .tmc .spyware .eventsources .TextInsertEventSource ;
1210import fi .helsinki .cs .tmc .spyware .eventsources .ProjectActionCaptor ;
1311import fi .helsinki .cs .tmc .spyware .eventsources .ProjectActionEventSource ;
@@ -65,7 +63,6 @@ public void run() {
6563
6664 private SourceSnapshotEventSource sourceSnapshotSource ;
6765 private ProjectActionEventSource projectActionSource ;
68- private OutputActionEventSource outputActionSource ;
6966 private TmcEventBusEventSource tmcEventBusSource ;
7067 private TextInsertEventSource textInsertEventSource ;
7168 private WindowStatechangesEventSource windowStatechangesEventSource ;
@@ -107,7 +104,6 @@ public SpywareFacade() {
107104
108105 projectActionSource = new ProjectActionEventSource (taggingSender );
109106 tmcEventBusSource = new TmcEventBusEventSource (taggingSender );
110- outputActionSource = new OutputActionEventSource (taggingSender );
111107
112108 windowStatechangesEventSource = new WindowStatechangesEventSource (taggingSender );
113109 TmcSwingUtilities .ensureEdt (new Runnable () {
@@ -116,7 +112,6 @@ public void run() {
116112 ProjectActionCaptor .addListener (projectActionSource );
117113 TmcEventBus .getDefault ().subscribeStrongly (tmcEventBusSource );
118114 textInsertEventSource = new TextInsertEventSource (taggingSender );
119- OutputActionCaptor .addListener (outputActionSource );
120115 }
121116 });
122117 }
@@ -131,7 +126,6 @@ public void run() {
131126 textInsertEventSource .close ();
132127 TmcEventBus .getDefault ().unsubscribe (tmcEventBusSource );
133128 ProjectActionCaptor .removeListener (projectActionSource );
134- OutputActionCaptor .removeListener (outputActionSource );
135129 }
136130 });
137131
0 commit comments