ctf/tmf: allow multiple traces to be open with name clashing events
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfLocation.java
index 55acb6b584382a21a33ff39af0dfd5142b6136ce..e59a2d35c35079a00b0bc19b1bdd4f73bf6f0b96 100644 (file)
@@ -129,7 +129,7 @@ public final class CtfLocation extends TmfLocation {
 
     @Override
     public String toString() {
-        if( this.getLocationInfo().equals(CtfLocation.INVALID_LOCATION )) {
+        if (getLocationInfo().equals(CtfLocation.INVALID_LOCATION )) {
             return getClass().getSimpleName() + " [INVALID]"; //$NON-NLS-1$
         }
         return super.toString();
@@ -143,6 +143,5 @@ public final class CtfLocation extends TmfLocation {
     @Override
     public void serialize(ByteBuffer bufferOut) {
         getLocationInfo().serialize(bufferOut);
-
     }
 }
This page took 0.023767 seconds and 5 git commands to generate.