Skip to content

Commit c672b87

Browse files
committed
Remove traces
1 parent 326f061 commit c672b87

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/Moat/Pretty/Kotlin.hs

-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import Data.Functor ((<&>))
88
import Data.List (intercalate)
99
import qualified Data.Map as Map
1010
import Data.Maybe (catMaybes, mapMaybe)
11-
import Debug.Trace
1211
import Moat.Pretty.Doc.KDoc
1312
import Moat.Types
1413

@@ -83,13 +82,8 @@ prettyStructFields indents fields deprecatedFields = go fields
8382
++ ",\n"
8483
go [] = ""
8584
go (field@(Field fieldName _ _) : fs) =
86-
traceShow deprecatedFieldsMap $
87-
traceShow fieldName $
88-
traceShow fields $
89-
traceShow fs $
9085
case Map.lookup fieldName deprecatedFieldsMap of
9186
Just mComment ->
92-
traceShow "test" $
9387
maybe "" (\comment -> "// " ++ comment ++ "\n") mComment
9488
++ "//"
9589
++ prettyField field

0 commit comments

Comments
 (0)