44import io .mavsdk .action_server .ActionServer ;
55import io .mavsdk .calibration .Calibration ;
66import io .mavsdk .camera .Camera ;
7- import io .mavsdk .component_information .ComponentInformation ;
8- import io .mavsdk .component_information_server .ComponentInformationServer ;
97import io .mavsdk .core .Core ;
108import io .mavsdk .failure .Failure ;
119import io .mavsdk .follow_me .FollowMe ;
2725import io .mavsdk .shell .Shell ;
2826import io .mavsdk .telemetry .Telemetry ;
2927import io .mavsdk .telemetry_server .TelemetryServer ;
30- import io .mavsdk .tracking_server .TrackingServer ;
3128import io .mavsdk .transponder .Transponder ;
3229import io .mavsdk .tune .Tune ;
3330import io .reactivex .annotations .NonNull ;
@@ -38,8 +35,6 @@ public class System {
3835 private final LazyPlugin <ActionServer > actionServer ;
3936 private final LazyPlugin <Calibration > calibration ;
4037 private final LazyPlugin <Camera > camera ;
41- private final LazyPlugin <ComponentInformation > componentInformation ;
42- private final LazyPlugin <ComponentInformationServer > componentInformationServer ;
4338 private final LazyPlugin <Core > core ;
4439 private final LazyPlugin <Failure > failure ;
4540 private final LazyPlugin <FollowMe > followMe ;
@@ -60,7 +55,6 @@ public class System {
6055 private final LazyPlugin <Shell > shell ;
6156 private final LazyPlugin <Telemetry > telemetry ;
6257 private final LazyPlugin <TelemetryServer > telemetryServer ;
63- private final LazyPlugin <TrackingServer > trackingServer ;
6458 private final LazyPlugin <Transponder > transponder ;
6559 private final LazyPlugin <Tune > tune ;
6660
@@ -86,8 +80,6 @@ public System(@NonNull String host, int port) {
8680 actionServer = LazyPlugin .from (() -> new ActionServer (host , port ));
8781 calibration = LazyPlugin .from (() -> new Calibration (host , port ));
8882 camera = LazyPlugin .from (() -> new Camera (host , port ));
89- componentInformation = LazyPlugin .from (() -> new ComponentInformation (host , port ));
90- componentInformationServer = LazyPlugin .from (() -> new ComponentInformationServer (host , port ));
9183 core = LazyPlugin .from (() -> new Core (host , port ));
9284 failure = LazyPlugin .from (() -> new Failure (host , port ));
9385 followMe = LazyPlugin .from (() -> new FollowMe (host , port ));
@@ -108,7 +100,6 @@ public System(@NonNull String host, int port) {
108100 shell = LazyPlugin .from (() -> new Shell (host , port ));
109101 telemetry = LazyPlugin .from (() -> new Telemetry (host , port ));
110102 telemetryServer = LazyPlugin .from (() -> new TelemetryServer (host , port ));
111- trackingServer = LazyPlugin .from (() -> new TrackingServer (host , port ));
112103 transponder = LazyPlugin .from (() -> new Transponder (host , port ));
113104 tune = LazyPlugin .from (() -> new Tune (host , port ));
114105 }
@@ -133,16 +124,6 @@ public Camera getCamera() {
133124 return camera .get ();
134125 }
135126
136- @ NonNull
137- public ComponentInformation getComponentInformation () {
138- return componentInformation .get ();
139- }
140-
141- @ NonNull
142- public ComponentInformationServer getComponentInformationServer () {
143- return componentInformationServer .get ();
144- }
145-
146127 @ NonNull
147128 public Core getCore () {
148129 return core .get ();
@@ -243,10 +224,6 @@ public TelemetryServer getTelemetryServer() {
243224 return telemetryServer .get ();
244225 }
245226
246- @ NonNull
247- public TrackingServer getTrackingServer () {
248- return trackingServer .get ();
249- }
250227
251228 @ NonNull
252229 public Transponder getTransponder () {
@@ -266,8 +243,6 @@ public void dispose() {
266243 actionServer .dispose ();
267244 calibration .dispose ();
268245 camera .dispose ();
269- componentInformation .dispose ();
270- componentInformationServer .dispose ();
271246 core .dispose ();
272247 failure .dispose ();
273248 followMe .dispose ();
@@ -288,7 +263,6 @@ public void dispose() {
288263 shell .dispose ();
289264 telemetry .dispose ();
290265 telemetryServer .dispose ();
291- trackingServer .dispose ();
292266 transponder .dispose ();
293267 tune .dispose ();
294268 }
0 commit comments