core: make JsonParser public

This commit is contained in:
Carl Mastrangelo 2018-04-18 18:49:08 -07:00 committed by GitHub
parent 30400e0e58
commit f754bff906
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import java.util.logging.Logger;
/**
* Parses JSON with as few preconceived notions as possible.
*/
final class JsonParser {
public final class JsonParser {
private static final Logger logger = Logger.getLogger(JsonParser.class.getName());