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 May 7, 2024
1 parent fd0b685 commit 48b6538
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 48b6538

Please sign in to comment.