1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 16:33:03 +03:00

Remove an unused conversion of Free to JSON.

This commit is contained in:
Rob Rix 2015-10-22 10:57:31 -04:00
parent 76b7df9d68
commit 6d665ff391

View File

@ -198,11 +198,5 @@ extension Free {
}
}
extension Free where Leaf: CustomJSONConvertible {
public func JSON(pure: Value -> Doubt.JSON) -> Doubt.JSON {
return JSON(pure: pure, leaf: { $0.JSON })
}
}
import Prelude