tmf: Simple warning fixes in tmf.ui and tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / statistics / model / AbsTmfStatisticsTree.java
index c62df8a373f1653cf9391e14f5c56980c42d1113..79efa68d189a3180c555b6e5325b8ba92d10811b 100755 (executable)
@@ -147,9 +147,8 @@ public abstract class AbsTmfStatisticsTree {
         if (path.size() == 1) {
             if (path.equals(ROOT)) {
                 return null;
-            } else {
-                return get(ROOT);
             }
+            return get(ROOT);
         }
         return get(path.subArray(0, path.size() - 1));
     }
This page took 0.024449 seconds and 5 git commands to generate.