Skip to content

Commit 9b9e7a8

Browse files
committed
Remove unused argument
1 parent fc8e0cc commit 9b9e7a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/imglib2/neighborsearch/RadiusNeighborSearchOnKDTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ private RadiusNeighborSearchOnKDTree( final RadiusNeighborSearchOnKDTree< T > ot
7575
public void search( final RealLocalizable reference, final double radius, final boolean sortResults )
7676
{
7777
impl.search( reference, radius, sortResults );
78-
fillMatches( 0, impl.numNeighbors() - 1 );
78+
fillMatches( impl.numNeighbors() - 1 );
7979
}
8080

81-
private void fillMatches( final int first, final int last )
81+
private void fillMatches( final int last )
8282
{
8383
while ( matches.size() < last + 1 )
8484
matches.add( tree.createNode() );

0 commit comments

Comments
 (0)