Skip to content

Commit

Permalink
Remove unused parameter in (==) extended method
Browse files Browse the repository at this point in the history
  • Loading branch information
camilogarciabotero committed Sep 7, 2024
1 parent a4af60a commit 9b8242c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/position.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Base.show(io::IO, p::GenomicPosition)
end
end

function Base.:(==)(a::GenomicPosition, b::GenomicPosition) where T
function Base.:(==)(a::GenomicPosition, b::GenomicPosition)
return groupname(a) == groupname(b) &&
position(a) == position(b) &&
metadata(a) == metadata(b)
Expand Down

0 comments on commit 9b8242c

Please sign in to comment.