From fb0cf6fcbc93181f7eb0087ba4b1549da4c0f372 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 13 Dec 2022 13:14:44 +0100 Subject: [PATCH] :paperclip: Revert some hacky code from previous commit --- common/src/app/common/geom/shapes/transforms.cljc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/common/src/app/common/geom/shapes/transforms.cljc b/common/src/app/common/geom/shapes/transforms.cljc index 582c59167..4383d92bb 100644 --- a/common/src/app/common/geom/shapes/transforms.cljc +++ b/common/src/app/common/geom/shapes/transforms.cljc @@ -7,11 +7,10 @@ (ns app.common.geom.shapes.transforms #?(:clj (:import (org.la4j Matrix LinearAlgebra)) :cljs (:import goog.math.Matrix)) - (:require + #?(:clj [app.common.exceptions :as ex]) [app.common.data :as d] [app.common.data.macros :as dm] - [app.common.exceptions :as ex] [app.common.geom.matrix :as gmt] [app.common.geom.point :as gpt] [app.common.geom.shapes.bool :as gshb] @@ -22,8 +21,7 @@ [app.common.types.modifiers :as ctm] [app.common.uuid :as uuid])) -#?(:clj (set! *warn-on-reflection* true) - :cljs (ex/ignoring nil)) +#?(:clj (set! *warn-on-reflection* true)) ;; --- Relative Movement