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 / dialogs / INewConnectionDialog.java
index f9736de07ff9f26e86246d390da221a1a0105a74..fcbaed371071069b9f40c76ebe5b79e941218bcc 100644 (file)
@@ -29,35 +29,35 @@ public interface INewConnectionDialog {
     /**
      * @return the connection name (alias).
      */
-    public String getConnectionName();
+    String getConnectionName();
 
     /**
      * @return the host name (IP address or DNS name)
      */
-    public String getHostName();
+    String getHostName();
 
     /**
      * @return port of IP connection to be used
      */
-    public int getPort();
+    int getPort();
 
     /**
      * Sets the trace control root
      * @param parent - the trace control parent
      */
-    public void setTraceControlParent(ITraceControlComponent parent);
+    void setTraceControlParent(ITraceControlComponent parent);
 
     /**
      * Sets the available hosts to select.
      * @param hosts - the available hosts
      */
-    public void setHosts(IHost[] hosts);
+    void setHosts(IHost[] hosts);
 
     /**
      * Set the port of the IP connection to be used.
      * @param port - the IP port to set
      */
-    public void setPort(int port);
+    void setPort(int port);
 
     // ------------------------------------------------------------------------
     // Operations
This page took 0.02491 seconds and 5 git commands to generate.