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 / IEnableUstEvents.java
index a53477ed426d6316dab3bba765b62a91e9f97d21..06b4130aadb6daeaa28e5fa12f04be43723b0a41 100644 (file)
@@ -33,51 +33,51 @@ public interface IEnableUstEvents {
     /**
      * @return a flag whether the tracepoints shall be configured.
      */
-    public boolean isTracepoints();
+    boolean isTracepoints();
 
     /**
      * @return a flag indicating whether all tracepoints shall be enabled or not.
      */
-    public boolean isAllTracePoints();
+    boolean isAllTracePoints();
 
     /**
      * @return a list of event names to be enabled.
      */
-    public List<String> getEventNames();
+    List<String> getEventNames();
 
     /**
      * @return a flag whether events using wildcards should be enabled
      */
-    public boolean isWildcard();
+    boolean isWildcard();
 
     /**
      * @return a wildcard
      */
-    public String getWildcard();
+    String getWildcard();
 
     /**
      * @return a flag whether events using log levels should be enabled
      */
-    public boolean isLogLevel();
+    boolean isLogLevel();
 
     /**
      * @return a log level type (loglevel or loglevel-only)
      */
-    public LogLevelType getLogLevelType();
+    LogLevelType getLogLevelType();
 
     /**
      * @return a log level
      */
-    public TraceLogLevel getLogLevel();
+    TraceLogLevel getLogLevel();
 
     /**
      * @return a event name for the log level enable action
      */
-    public String getLogLevelEventName();
+    String getLogLevelEventName();
 
     /**
      * @return a filter expression
      */
-    public String getFilterExpression();
+    String getFilterExpression();
 
 }
This page took 0.025506 seconds and 5 git commands to generate.