Skip to content

Commit

Permalink
Fix circular call to LanczosInterpolator.copy()
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Apr 4, 2024
1 parent 4f78b5c commit c922f4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,6 @@ final private double lookUpLanczos( final double x )
@Override
public RealRandomAccess< T > copy()
{
return copy();
return new LanczosInterpolator<>( this );
}
}

0 comments on commit c922f4d

Please sign in to comment.