From d53051a349b890a5104d2d17040c8fd22bf068cd Mon Sep 17 00:00:00 2001 From: kalmar Date: Wed, 17 May 2017 11:30:05 +0200 Subject: [PATCH] No GroupRingElem without parent is allowed --- src/GroupRings.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index 3eda4aa..972fe98 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -31,10 +31,6 @@ abstract AbstractGroupRingElem type GroupRingElem{T<:Number} <: AbstractGroupRingElem coeffs::AbstractVector{T} parent::GroupRing - - function GroupRingElem(coeffs::AbstractVector) - return new(coeffs) - end end export GroupRing, GroupRingElem