Skip to content

Commit

Permalink
Remove TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
SouthEndMusic committed Nov 23, 2023
1 parent 86c68cb commit 6bb16ee
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions core/src/validation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,6 @@ function Base.isless(id_1::NodeID, id_2::NodeID)::Bool
end

function Base.getindex(M::AbstractArray, id_row::NodeID, id_col::NodeID)
# TODO: This method is only used for the flow matrix, and can be removed
# once the flow is stored in a different data structure
return M[id_row.value, id_col.value]
end

Expand All @@ -430,8 +428,6 @@ function Base.setindex!(
id_row::NodeID,
id_col::NodeID,
)::Nothing where {T}
# TODO: This method is only used for the flow matrix, and can be removed
# once the flow is stored in a different data structure
M[id_row.value, id_col.value] = value
return nothing
end
Expand Down

0 comments on commit 6bb16ee

Please sign in to comment.