From 7188433472292f32034f33ded9532605b2801586 Mon Sep 17 00:00:00 2001 From: kalmar Date: Tue, 25 Jul 2017 00:01:23 +0200 Subject: [PATCH] fix: remove remains of the old version --- src/GroupRings.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index 45bae20..f2246df 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -413,9 +413,6 @@ function *{T<:Number, S<:Number}(X::GroupRingElem{T}, Y::GroupRingElem{S}, check TT = typeof(first(X.coeffs)*first(Y.coeffs)) warn("Multiplying elements with different base rings! Promoting the result to $TT.") - result = mul!(result, X, Y) - return result - if isdefined(parent(X), :basis) result = parent(X)(similar(X.coeffs)) result = convert(TT, result)