Skip to content

Commit 79d4bf5

Browse files
authored
Remove unused S parameter (#48)
1 parent d23472a commit 79d4bf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MultiObjectiveAlgorithms.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ function MOI.set(
350350
attr::MOI.AbstractVariableAttribute,
351351
indices::Vector{<:MOI.VariableIndex},
352352
args::Vector{T},
353-
) where {S,T}
353+
) where {T}
354354
MOI.set.(model, attr, indices, args)
355355
return
356356
end
@@ -374,7 +374,7 @@ function MOI.set(
374374
attr::MOI.AbstractConstraintAttribute,
375375
indices::Vector{<:MOI.ConstraintIndex},
376376
args::Vector{T},
377-
) where {S,T}
377+
) where {T}
378378
MOI.set.(model, attr, indices, args)
379379
return
380380
end

0 commit comments

Comments
 (0)