diff --git a/Sources/JSON/Coder/Decoding/_JSONSingleValueDecoder.swift b/Sources/JSON/Coder/Decoding/_JSONSingleValueDecoder.swift index 67e6634..0343cad 100644 --- a/Sources/JSON/Coder/Decoding/_JSONSingleValueDecoder.swift +++ b/Sources/JSON/Coder/Decoding/_JSONSingleValueDecoder.swift @@ -39,6 +39,5 @@ internal struct _JSONSingleValueDecoder: SingleValueDecodingContainer { func decode(_ type: T.Type) throws -> T where T: Decodable { let decoder = _JSONDecoder(codingPath: self.codingPath, json: self.json) return try T.init(from: decoder) - // return try self.json.value(for: type, at: self.codingPath) } }