Skip to content

Commit

Permalink
Merge pull request #51 from camilogarciabotero/develop
Browse files Browse the repository at this point in the history
Remove unused parameter in (==) extended method
  • Loading branch information
MillironX authored Oct 1, 2024
2 parents a4af60a + 9b8242c commit e3a1b88
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 e3a1b88

Please sign in to comment.