aboutsummaryrefslogtreecommitdiffstats
path: root/autotypes/src/AutoTypes.hs
diff options
context:
space:
mode:
Diffstat (limited to 'autotypes/src/AutoTypes.hs')
-rw-r--r--autotypes/src/AutoTypes.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/autotypes/src/AutoTypes.hs b/autotypes/src/AutoTypes.hs
index c5a43d1..826d6c6 100644
--- a/autotypes/src/AutoTypes.hs
+++ b/autotypes/src/AutoTypes.hs
@@ -4,7 +4,6 @@ module AutoTypes
)
where
-import Debug.Trace
import qualified AutoTypes.Unify as U
import Data.Aeson (Value, decodeFileStrict', encode)
import Data.Maybe (fromJust)
@@ -17,7 +16,7 @@ autoTypes fp fps = autoTypes' <$> go fp <*> mapM go (fp : fps)
autoTypes' :: Value -> [Value] -> U.T
autoTypes' t' ts' =
- let types = map U.fromJson (Debug.Trace.traceShowId (t' : ts'))
+ let types = map U.fromJson (t' : ts')
in head
( foldr1
(\ls rs -> (concat [U.unify1 l r | l <- ls, r <- rs]))