@deprecated Use JsonParser#parseString
(String json)
| 153 | * @deprecated Use {@link JsonParser#parseString} |
| 154 | */ |
| 155 | @Deprecated |
| 156 | @InlineMe(replacement = "JsonParser.parseString(json)", imports = "com.google.gson.JsonParser") |
| 157 | public JsonElement parse(String json) throws JsonSyntaxException { |
| 158 | return parseString(json); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * @deprecated Use {@link JsonParser#parseReader(Reader)} |
nothing calls this directly
no test coverage detected