Skip to content

Commit 1e8ee12

Browse files
committed
Remove unbound args
1 parent fc5a08e commit 1e8ee12

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/jacobians.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ function finite_difference_jacobian!(J,
263263
relstep=default_relstep(fdtype, eltype(x)),
264264
absstep=relstep,
265265
colorvec = 1:length(x),
266-
sparsity = ArrayInterface.has_sparsestruct(J) ? J : nothing) where {T1,T2}
266+
sparsity = ArrayInterface.has_sparsestruct(J) ? J : nothing)
267267
if f_in isa Nothing && fdtype == Val{:forward}
268268
if size(J,1) == length(x)
269269
fx = zero(x)

0 commit comments

Comments
 (0)