6
6
import fi .helsinki .cs .tmc .model .CourseDb ;
7
7
import fi .helsinki .cs .tmc .model .ServerAccess ;
8
8
import fi .helsinki .cs .tmc .model .TmcSettings ;
9
- import fi .helsinki .cs .tmc .spyware .eventsources .OutputActionCaptor ;
10
- import fi .helsinki .cs .tmc .spyware .eventsources .OutputActionEventSource ;
11
9
import fi .helsinki .cs .tmc .spyware .eventsources .TextInsertEventSource ;
12
10
import fi .helsinki .cs .tmc .spyware .eventsources .ProjectActionCaptor ;
13
11
import fi .helsinki .cs .tmc .spyware .eventsources .ProjectActionEventSource ;
@@ -65,7 +63,6 @@ public void run() {
65
63
66
64
private SourceSnapshotEventSource sourceSnapshotSource ;
67
65
private ProjectActionEventSource projectActionSource ;
68
- private OutputActionEventSource outputActionSource ;
69
66
private TmcEventBusEventSource tmcEventBusSource ;
70
67
private TextInsertEventSource textInsertEventSource ;
71
68
private WindowStatechangesEventSource windowStatechangesEventSource ;
@@ -107,7 +104,6 @@ public SpywareFacade() {
107
104
108
105
projectActionSource = new ProjectActionEventSource (taggingSender );
109
106
tmcEventBusSource = new TmcEventBusEventSource (taggingSender );
110
- outputActionSource = new OutputActionEventSource (taggingSender );
111
107
112
108
windowStatechangesEventSource = new WindowStatechangesEventSource (taggingSender );
113
109
TmcSwingUtilities .ensureEdt (new Runnable () {
@@ -116,7 +112,6 @@ public void run() {
116
112
ProjectActionCaptor .addListener (projectActionSource );
117
113
TmcEventBus .getDefault ().subscribeStrongly (tmcEventBusSource );
118
114
textInsertEventSource = new TextInsertEventSource (taggingSender );
119
- OutputActionCaptor .addListener (outputActionSource );
120
115
}
121
116
});
122
117
}
@@ -131,7 +126,6 @@ public void run() {
131
126
textInsertEventSource .close ();
132
127
TmcEventBus .getDefault ().unsubscribe (tmcEventBusSource );
133
128
ProjectActionCaptor .removeListener (projectActionSource );
134
- OutputActionCaptor .removeListener (outputActionSource );
135
129
}
136
130
});
137
131
0 commit comments