From 2c45b70eac8a3458e1650d1ae211bb013517c882 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Fri, 3 Nov 2017 16:39:18 +0100 Subject: [PATCH] remove type annotation --- src/GroupRings.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index 4ba3c69..3c84198 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -412,9 +412,9 @@ function mul!{T}(result::GroupRingElem{T}, X::GroupRingElem, Y::GroupRingElem) end end else - for j::Int in 1:lY + for j in 1:lY if Y.coeffs[j] != z - for i::Int in 1:lX + for i in 1:lX if X.coeffs[i] != z result[RG.basis[i]*RG.basis[j]] += X[i]*Y[j] end