Skip to content
Snippets Groups Projects
Commit 6f541e73 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

remove unused member variable

parent eadae0ed
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ import net.imglib2.Cursor;
import net.imglib2.IterableInterval;
import net.imglib2.RandomAccessible;
import net.imglib2.RandomAccessibleInterval;
import net.imglib2.converter.Converter;
import net.imglib2.ui.InterruptibleProjector;
import net.imglib2.ui.util.StopWatch;
import net.imglib2.view.Views;
......@@ -21,11 +20,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
protected final ArrayList< IterableInterval< A > > sources;
/**
* A converter from the source pixel type to the target pixel type.
*/
protected final Converter< ? super A, B > converter;
/**
* The target interval. Pixels of the target interval should be set by
* {@link InterruptibleProjector#map()}
......@@ -57,7 +51,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
public AccumulateProjector(
final ArrayList< VolatileProjector > sourceProjectors,
final ArrayList< ? extends RandomAccessible< A > > sources,
final Converter< ? super A, B > converter,
final RandomAccessibleInterval< B > target,
final int numThreads,
final ExecutorService executorService )
......@@ -66,7 +59,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
this.sources = new ArrayList< IterableInterval< A > >();
for ( final RandomAccessible< A > source : sources )
this.sources.add( Views.flatIterable( Views.interval( source, target ) ) );
this.converter = converter;
this.target = target;
this.iterableTarget = Views.flatIterable( target );
this.numThreads = numThreads;
......
......@@ -31,7 +31,7 @@ public class AccumulateProjectorARGB extends AccumulateProjector< ARGBType, ARGB
final int numThreads,
final ExecutorService executorService )
{
super( sourceProjectors, sources, null, target, numThreads, executorService );
super( sourceProjectors, sources, target, numThreads, executorService );
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment