Skip to content

Commit ac0dbee

Browse files
committed
Remove unused method
1 parent b740bad commit ac0dbee

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

src/main/java/net/imglib2/algorithm/convolution/LineConvolverFactory.java

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -45,29 +45,4 @@ public interface LineConvolverFactory< T >
4545
* (Input line length should be getBorderBefore() + lineLength + getBorderAfter())
4646
*/
4747
Runnable getConvolver( RandomAccess< ? extends T > in, RandomAccess< ? extends T > out, int d, long lineLength );
48-
49-
static < S, T > LineConvolverFactory< T > wrapGauss3Convolver( double[] halfkernel, net.imglib2.algorithm.gauss3.ConvolverFactory< S, T > old )
50-
{
51-
return new LineConvolverFactory< T >()
52-
{
53-
@Override public long getBorderBefore()
54-
{
55-
return halfkernel.length - 1;
56-
}
57-
58-
@Override public long getBorderAfter()
59-
{
60-
return halfkernel.length - 1;
61-
}
62-
63-
@Override public Runnable getConvolver( RandomAccess< ? extends T > in, RandomAccess< ? extends T > out, int d, long lineLength )
64-
{
65-
@SuppressWarnings( "unchecked" )
66-
RandomAccess< S > in1 = ( RandomAccess< S > ) in;
67-
@SuppressWarnings( "unchecked" )
68-
RandomAccess< T > out1 = ( RandomAccess< T > ) out;
69-
return old.create( halfkernel, in1, out1, d, lineLength );
70-
}
71-
};
72-
}
7348
}

0 commit comments

Comments
 (0)