From 1690463de92fd9f56300878946c4bc930f67c3dd Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 9 Oct 2024 22:37:04 +0200 Subject: [PATCH] Delete redundant isequal method The default method already delegates to == --- src/generic/TotalFraction.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/generic/TotalFraction.jl b/src/generic/TotalFraction.jl index 7087244fa3..0a957dfee3 100644 --- a/src/generic/TotalFraction.jl +++ b/src/generic/TotalFraction.jl @@ -315,10 +315,6 @@ function ==(x::TotFrac{T}, y::TotFrac{T}) where {T <: RingElem} denominator(x, false)*numerator(y, false)) end -function isequal(x::TotFrac{T}, y::TotFrac{T}) where {T <: RingElem} - return x == y -end - ############################################################################### # # Ad hoc comparisons