Skip to content
Snippets Groups Projects
Commit 25519317 authored by Nils Christian Ehmke's avatar Nils Christian Ehmke
Browse files

Minor fix due to TeeTime API change

parent fa3440e7
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ public final class TraceReconstructorTest {
private final List<Trace> traceCollectorList = new ArrayList<>();
public ReconstructionConfiguration(final List<IFlowRecord> input) {
final IterableProducer<List<IFlowRecord>, IFlowRecord> producer = new IterableProducer<>(input);
final IterableProducer<IFlowRecord> producer = new IterableProducer<>(input);
final TraceReconstructor reconstructor = new TraceReconstructor();
final CollectorSink<Trace> collector = new CollectorSink<>(this.traceCollectorList);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment