Skip to content

Commit

Permalink
Fixing checkstyle Warnings - (Task #1184)
Browse files Browse the repository at this point in the history
- Due to zmq removal

---
Task #1184: Updating to Eclipse 2024/03 and all dependencies
  • Loading branch information
PhilMFischer committed Jul 11, 2024
1 parent 63ed136 commit e8938a3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ by German Aerospace Center (DLR e.V.)

<plugin id="de.dlr.sc.virsat.external.lib.protobuf" download-size="0" install-size="0" version="0.0.0" unpack="false" />

<plugin id="de.dlr.sc.virsat.external.lib.zmq.linux.x86_64" os="linux" arch="x86_64" download-size="0" install-size="0" version="0.0.0" />

<plugin id="de.dlr.sc.virsat.external.lib.zmq.win32.x86_64" os="win32" arch="x86_64" download-size="0" install-size="0" version="0.0.0" unpack="false" />

<plugin id="de.dlr.sc.virsat.external.lib.vtk.linux.x86_64" os="linux" arch="x86_64" download-size="0" install-size="0" version="0.0.0" />

<plugin id="de.dlr.sc.virsat.external.lib.vtk.win32.x86_64" os="win32" arch="x86_64" download-size="0" install-size="0" version="0.0.0" unpack="false" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import org.osgi.framework.BundleContext;

import de.dlr.sc.virsat.model.extension.visualisation.treemanager.StartManagers;
import de.dlr.sc.virsat.model.extension.visualisation.ui.vtkClient.VtkClientVisUpdateHandler;
import de.dlr.sc.virsat.project.editingDomain.VirSatTransactionalEditingDomain;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@ Export-Package: de.dlr.sc.virsat.model.extension.visualisation,
de.dlr.sc.virsat.model.extension.visualisation.model,
de.dlr.sc.virsat.model.extension.visualisation.shape,
de.dlr.sc.virsat.model.extension.visualisation.treemanager,
de.dlr.sc.virsat.model.extension.visualisation.treemanager.networking,
de.dlr.sc.virsat.model.extension.visualisation.validator,
de.dlr.sc.visproto,
proto
Bundle-ClassPath: localLib/visProtocol.jar,
.
Bundle-Activator: de.dlr.sc.virsat.model.extension.visualisation.Activator
Bundle-ActivationPolicy: lazy
Import-Package: org.zeromq
Automatic-Module-Name: de.dlr.sc.virsat.model.extension.visualisation
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ public class TreeManager implements IVisualisationTreeManager, IPausableSender {
private Map<String, Integer> hashNodeMap = new HashMap<String, Integer>();
private IShapeEditObserver observer;

private boolean sendingPaused = false;

/**
* Log root node
*/
Expand Down Expand Up @@ -687,14 +685,11 @@ private Shape convertProtobufNodeToShape(SceneGraphNodeOrBuilder node) {

@Override
public void pauseSending() {
sendingPaused = true;
}

@Override
public void resumeSending() {
sendingPaused = false;
}


@Override
public void reloadGeometryFile(String shapeId) {
Expand Down
1 change: 0 additions & 1 deletion de.dlr.sc.virsat.swtbot.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ Require-Bundle: org.eclipse.swt,
de.dlr.sc.virsat.model.extension.thermal.ui,
org.slf4j.api;bundle-version="1.7.30"
Import-Package: org.eclipse.draw2d.geometry,
org.zeromq,
vtk,
vtk.rendering,
vtk.rendering.awt
Expand Down

0 comments on commit e8938a3

Please sign in to comment.