lttng2: Simplify boolean expression
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / service / LTTngControlService.java
index 4e60b2c8e5adf1cac84a79cf0a03cf5a0c92ca62..133c171e2fd20f698f839d51e9f13f93a48d6434 100644 (file)
@@ -949,7 +949,7 @@ public class LTTngControlService implements ILttngControlService {
                 inList = true;
             } else if (endMatcher.matches()) {
                 break;
-            } else if (inList == true) {
+            } else if (inList) {
                 String[] tmp = line.split(","); //$NON-NLS-1$
                 for (int i = 0; i < tmp.length; i++) {
                     contexts.add(tmp[i].trim());
This page took 0.02396 seconds and 5 git commands to generate.