Skip to content

Commit

Permalink
Remove unused S parameter (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat authored Feb 25, 2023
1 parent d23472a commit 79d4bf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MultiObjectiveAlgorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ function MOI.set(
attr::MOI.AbstractVariableAttribute,
indices::Vector{<:MOI.VariableIndex},
args::Vector{T},
) where {S,T}
) where {T}
MOI.set.(model, attr, indices, args)
return
end
Expand All @@ -374,7 +374,7 @@ function MOI.set(
attr::MOI.AbstractConstraintAttribute,
indices::Vector{<:MOI.ConstraintIndex},
args::Vector{T},
) where {S,T}
) where {T}
MOI.set.(model, attr, indices, args)
return
end
Expand Down

0 comments on commit 79d4bf5

Please sign in to comment.