From 553661e4884469efc5507f05ad47730a0e58a4d1 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 13 Feb 2024 17:35:44 +1100 Subject: [PATCH] clean up --- serde/json/deserializer.nim | 2 -- 1 file changed, 2 deletions(-) diff --git a/serde/json/deserializer.nim b/serde/json/deserializer.nim index a4069a8..72d6896 100644 --- a/serde/json/deserializer.nim +++ b/serde/json/deserializer.nim @@ -234,8 +234,6 @@ proc fromJson*(_: type JsonNode, json: string): ?!JsonNode = proc fromJson*[T: ref object or object](_: type T, bytes: openArray[byte]): ?!T = let json = string.fromBytes(bytes) - static: - echo "typeof json after parse: ", typeof json T.fromJson(json) proc fromJson*[T: ref object or object](_: type T, json: string): ?!T =