From 901b66ab6b646cf431da1e12640f6a6d682d99f8 Mon Sep 17 00:00:00 2001 From: Caleb Kleveter Date: Mon, 19 Feb 2018 06:57:15 -0600 Subject: [PATCH] Removed commented-out return for _JSONSingleValueDecoder.decode(T) --- Sources/JSON/Coder/Decoding/_JSONSingleValueDecoder.swift | 1 - 1 file changed, 1 deletion(-) 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) } }