lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / remote / IRemoteSystemProxy.java
index a7670a0e7dd13b1fff2c657f0ecdcada095604e0..295a5cdf877a88d0e3692e29ebd55d5632375227 100644 (file)
@@ -44,46 +44,46 @@ public interface IRemoteSystemProxy {
      *
      * @return shell service object, or <code>null</code> if not found.
      */
-    public IShellService getShellService();
+    IShellService getShellService();
 
     /**
      * Find the first terminal service.
      *
      * @return shell service object, or <code>null</code> if not found.
      */
-    public ITerminalService getTerminalService();
+    ITerminalService getTerminalService();
 
     /**
      * Find the first IShellServiceSubSystem service.
      *
      * @return shell service subsystem, or <code>null</code> if not found.
      */
-    public ISubSystem getShellServiceSubSystem();
+    ISubSystem getShellServiceSubSystem();
 
     /**
      * Find the first ITerminalServiceSubSystem service.
      *
      * @return shell service subsystem, or <code>null</code> if not found.
      */
-    public ISubSystem getTerminalServiceSubSystem();
+    ISubSystem getTerminalServiceSubSystem();
 
     /**
      * Finds the File Service Subsystem.
      *
      * @return file service subsystem, or <code>null</code> if not found.
      */
-    public IFileServiceSubSystem getFileServiceSubSystem();
+    IFileServiceSubSystem getFileServiceSubSystem();
 
     /**
      * @return port of IP connection to be used
      */
-    public int getPort();
+    int getPort();
 
     /**
      * Sets the port of the IP connection.
      * @param port - the IP port to set
      */
-    public void setPort(int port);
+    void setPort(int port);
 
     /**
      * Connects the shell service sub system.
@@ -93,7 +93,7 @@ public interface IRemoteSystemProxy {
      * @throws ExecutionException
      *             If the connection fails
      */
-    public void connect(IRSECallback callback) throws ExecutionException;
+    void connect(IRSECallback callback) throws ExecutionException;
 
     /**
      * Disconnects from the shell service sub system.
@@ -101,7 +101,7 @@ public interface IRemoteSystemProxy {
      * @throws ExecutionException
      *             If the disconnect command fails
      */
-    public void disconnect() throws ExecutionException;
+    void disconnect() throws ExecutionException;
 
     /**
      * Creates a command shell.
@@ -110,7 +110,7 @@ public interface IRemoteSystemProxy {
      * @throws ExecutionException
      *             If the command fails
      */
-    public ICommandShell createCommandShell() throws ExecutionException;
+    ICommandShell createCommandShell() throws ExecutionException;
 
     /**
      * Method to add a communication listener to the connector service defined
@@ -119,7 +119,7 @@ public interface IRemoteSystemProxy {
      * @param listener
      *            - listener to add
      */
-    public void addCommunicationListener(ICommunicationsListener listener);
+    void addCommunicationListener(ICommunicationsListener listener);
 
     /**
      * Method to remove a communication listener from the connector service
@@ -128,6 +128,6 @@ public interface IRemoteSystemProxy {
      * @param listener
      *            - listener to remove
      */
-    public void removeCommunicationListener(ICommunicationsListener listener);
+    void removeCommunicationListener(ICommunicationsListener listener);
 
 }
\ No newline at end of file
This page took 0.026792 seconds and 5 git commands to generate.