core: Remove unnecessary SuppressWarnings from JsonParser

This commit is contained in:
Eric Anderson 2018-04-21 10:45:29 -07:00
parent d37f87abce
commit c6c2ee876a
1 changed files with 0 additions and 1 deletions

View File

@ -43,7 +43,6 @@ public final class JsonParser {
* Parses a json string, returning either a {@code Map<String, ?>}, {@code List<?>},
* {@code String}, {@code Double}, {@code Boolean}, or {@code null}.
*/
@SuppressWarnings("unchecked")
public static Object parse(String raw) throws IOException {
JsonReader jr = new JsonReader(new StringReader(raw));
try {