Fix warnings from FindBugs
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / experiment / TmfExperimentContext.java
index 548367f5b68cd28e0f360001b8a27f3cb6c491d5..d8c978d9b0dba8659d1d8bca8d104a3c7283219b 100644 (file)
@@ -134,6 +134,10 @@ public class TmfExperimentContext extends TmfContext {
  
     @Override
     public boolean equals(Object other) {
+        if (this == other)
+            return true;
+        if (!super.equals(other))
+            return false;
        if (!(other instanceof TmfExperimentContext)) {
                return false;
        }
This page took 0.027745 seconds and 5 git commands to generate.