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 / IGetEventInfoDialog.java
index 2451744fcba2f6321e785beca1ec30c3aae72542..1325f42384c96cdbe700157f765d811e28ce7803 100644 (file)
@@ -30,30 +30,30 @@ public interface IGetEventInfoDialog {
     /**
      * @return the session the events shall be enabled.
      */
-    public TraceSessionComponent getSession();
+    TraceSessionComponent getSession();
 
     /**
      * @return the channel the events shall be enabled. Null for default channel.
      */
-    public TraceChannelComponent getChannel();
+    TraceChannelComponent getChannel();
 
     /**
      * Sets flag about domain.
      * @param isKernel - true for kernel, false for UST
      */
-    public void setIsKernel(boolean isKernel);
+    void setIsKernel(boolean isKernel);
 
     /**
      * Sets available session.
      * @param sessions - a array of available sessions.
      */
-    public void setSessions(TraceSessionComponent[] sessions);
+    void setSessions(TraceSessionComponent[] sessions);
 
     /**
      * Returns the filter expression.
      * @return the filter expression or null for no filtering
      */
-    public String getFilterExpression();
+    String getFilterExpression();
 
     // ------------------------------------------------------------------------
     // Operations
This page took 0.024918 seconds and 5 git commands to generate.