Update TmfTrace as per ITmfTrace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / component / TmfDataProvider.java
index 2902e53324c9d955855af06ed7dfa90c045dc32e..cd541d3b38345d6a5cc9a9ae165a8b354084faad 100644 (file)
@@ -79,9 +79,9 @@ public abstract class TmfDataProvider<T extends ITmfEvent> extends TmfComponent
         fExecutor = new TmfRequestExecutor();
     }
 
-    public void init(String name, Class<T> dataType) {
+    public void init(String name, Class<T> type) {
         super.init(name);
-        fType = dataType;
+        fType = type;
         fDataQueue = (fQueueSize > 1) ? new LinkedBlockingQueue<T>(fQueueSize) : new SynchronousQueue<T>();
 
         fExecutor = new TmfRequestExecutor();
This page took 0.023705 seconds and 5 git commands to generate.