Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / internal / analysis / graph / core / criticalpath / AbstractCriticalPathAlgorithm.java
index ce9051f8665dc26588cddee2cf7e77f48e313f95..38e75d4973153131cb780662ad198d746b554404 100644 (file)
@@ -16,7 +16,6 @@ import org.eclipse.tracecompass.analysis.graph.core.base.TmfGraph;
 import org.eclipse.tracecompass.analysis.graph.core.base.TmfVertex;
 import org.eclipse.tracecompass.analysis.graph.core.base.TmfVertex.EdgeDirection;
 import org.eclipse.tracecompass.analysis.graph.core.criticalpath.ICriticalPathAlgorithm;
-import org.eclipse.tracecompass.common.core.NonNullUtils;
 
 /**
  * Abstract class for critical path algorithms
@@ -110,12 +109,12 @@ public abstract class AbstractCriticalPathAlgorithm implements ICriticalPathAlgo
 
     @Override
     public String getID() {
-        return NonNullUtils.checkNotNull(getClass().getName());
+        return getClass().getName();
     }
 
     @Override
     public String getDisplayName() {
-        return NonNullUtils.checkNotNull(getClass().getSimpleName());
+        return getClass().getSimpleName();
     }
 
 }
This page took 0.025164 seconds and 5 git commands to generate.