Skip to content

Commit bc83f78

Browse files
authored
remove unnecessary function parametrization (#523)
1 parent d38ae2e commit bc83f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deprecations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function interpolate!(::Type{TWeights}, A, it::IT, gt::GT) where {TWeights,IT<:D
2727
Base.depwarn("interpolate!($TWeights, A, $it, $gt) is deprecated, use interpolate!($TWeights, A, $bcs)", :interpolate)
2828
interpolate!(TWeights, A, bcs)
2929
end
30-
function interpolate!(A, it::IT, gt::GT) where {TWeights,IT<:DimSpec{BSpline},GT<:DimSpec{GridType}}
30+
function interpolate!(A, it::IT, gt::GT) where {IT<:DimSpec{BSpline},GT<:DimSpec{GridType}}
3131
bcs = create_bcs(it, gt)
3232
Base.depwarn("interpolate!(A, $it, $gt) is deprecated, use interpolate!(A, $bcs)", :interpolate)
3333
interpolate!(A, bcs)

0 commit comments

Comments
 (0)