Removed commented-out return for _JSONSingleValueDecoder.decode(T)

This commit is contained in:
Caleb Kleveter 2018-02-19 06:57:15 -06:00
parent de5bd2b890
commit 901b66ab6b
1 changed files with 0 additions and 1 deletions

View File

@ -39,6 +39,5 @@ internal struct _JSONSingleValueDecoder: SingleValueDecodingContainer {
func decode<T>(_ 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)
}
}