From efbb4eada8d2c1122b9c478a27e2a20639cfb86e Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Mon, 12 Feb 2024 12:16:32 +0100 Subject: [PATCH] remove the show overload for Type{<:FPGroupElement} --- src/types.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/types.jl b/src/types.jl index b0c079f..1ec1d45 100644 --- a/src/types.jl +++ b/src/types.jl @@ -99,10 +99,6 @@ mutable struct FPGroupElement{Gr<:AbstractFPGroup,W<:AbstractWord} <: end end -function Base.show(io::IO, ::Type{<:FPGroupElement{Gr}}) where {Gr} - return print(io, FPGroupElement, "{$Gr, …}") -end - function Base.copy(f::FPGroupElement) return FPGroupElement(copy(word(f)), parent(f), f.savedhash) end