4
4
import io .mavsdk .action_server .ActionServer ;
5
5
import io .mavsdk .calibration .Calibration ;
6
6
import io .mavsdk .camera .Camera ;
7
- import io .mavsdk .component_information .ComponentInformation ;
8
- import io .mavsdk .component_information_server .ComponentInformationServer ;
9
7
import io .mavsdk .core .Core ;
10
8
import io .mavsdk .failure .Failure ;
11
9
import io .mavsdk .follow_me .FollowMe ;
27
25
import io .mavsdk .shell .Shell ;
28
26
import io .mavsdk .telemetry .Telemetry ;
29
27
import io .mavsdk .telemetry_server .TelemetryServer ;
30
- import io .mavsdk .tracking_server .TrackingServer ;
31
28
import io .mavsdk .transponder .Transponder ;
32
29
import io .mavsdk .tune .Tune ;
33
30
import io .reactivex .annotations .NonNull ;
@@ -38,8 +35,6 @@ public class System {
38
35
private final LazyPlugin <ActionServer > actionServer ;
39
36
private final LazyPlugin <Calibration > calibration ;
40
37
private final LazyPlugin <Camera > camera ;
41
- private final LazyPlugin <ComponentInformation > componentInformation ;
42
- private final LazyPlugin <ComponentInformationServer > componentInformationServer ;
43
38
private final LazyPlugin <Core > core ;
44
39
private final LazyPlugin <Failure > failure ;
45
40
private final LazyPlugin <FollowMe > followMe ;
@@ -60,7 +55,6 @@ public class System {
60
55
private final LazyPlugin <Shell > shell ;
61
56
private final LazyPlugin <Telemetry > telemetry ;
62
57
private final LazyPlugin <TelemetryServer > telemetryServer ;
63
- private final LazyPlugin <TrackingServer > trackingServer ;
64
58
private final LazyPlugin <Transponder > transponder ;
65
59
private final LazyPlugin <Tune > tune ;
66
60
@@ -86,8 +80,6 @@ public System(@NonNull String host, int port) {
86
80
actionServer = LazyPlugin .from (() -> new ActionServer (host , port ));
87
81
calibration = LazyPlugin .from (() -> new Calibration (host , port ));
88
82
camera = LazyPlugin .from (() -> new Camera (host , port ));
89
- componentInformation = LazyPlugin .from (() -> new ComponentInformation (host , port ));
90
- componentInformationServer = LazyPlugin .from (() -> new ComponentInformationServer (host , port ));
91
83
core = LazyPlugin .from (() -> new Core (host , port ));
92
84
failure = LazyPlugin .from (() -> new Failure (host , port ));
93
85
followMe = LazyPlugin .from (() -> new FollowMe (host , port ));
@@ -108,7 +100,6 @@ public System(@NonNull String host, int port) {
108
100
shell = LazyPlugin .from (() -> new Shell (host , port ));
109
101
telemetry = LazyPlugin .from (() -> new Telemetry (host , port ));
110
102
telemetryServer = LazyPlugin .from (() -> new TelemetryServer (host , port ));
111
- trackingServer = LazyPlugin .from (() -> new TrackingServer (host , port ));
112
103
transponder = LazyPlugin .from (() -> new Transponder (host , port ));
113
104
tune = LazyPlugin .from (() -> new Tune (host , port ));
114
105
}
@@ -133,16 +124,6 @@ public Camera getCamera() {
133
124
return camera .get ();
134
125
}
135
126
136
- @ NonNull
137
- public ComponentInformation getComponentInformation () {
138
- return componentInformation .get ();
139
- }
140
-
141
- @ NonNull
142
- public ComponentInformationServer getComponentInformationServer () {
143
- return componentInformationServer .get ();
144
- }
145
-
146
127
@ NonNull
147
128
public Core getCore () {
148
129
return core .get ();
@@ -243,10 +224,6 @@ public TelemetryServer getTelemetryServer() {
243
224
return telemetryServer .get ();
244
225
}
245
226
246
- @ NonNull
247
- public TrackingServer getTrackingServer () {
248
- return trackingServer .get ();
249
- }
250
227
251
228
@ NonNull
252
229
public Transponder getTransponder () {
@@ -266,8 +243,6 @@ public void dispose() {
266
243
actionServer .dispose ();
267
244
calibration .dispose ();
268
245
camera .dispose ();
269
- componentInformation .dispose ();
270
- componentInformationServer .dispose ();
271
246
core .dispose ();
272
247
failure .dispose ();
273
248
followMe .dispose ();
@@ -288,7 +263,6 @@ public void dispose() {
288
263
shell .dispose ();
289
264
telemetry .dispose ();
290
265
telemetryServer .dispose ();
291
- trackingServer .dispose ();
292
266
transponder .dispose ();
293
267
tune .dispose ();
294
268
}
0 commit comments