[json-simple]code clean up

This commit is contained in:
yushijinhun 2018-04-15 09:28:46 +08:00
parent 48a6919c6a
commit 5c816c2e90
No known key found for this signature in database
GPG key ID: 5BC167F73EA558E4
3 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@ package org.to2mbn.authlibinjector.internal.org.json.simple;
/**
* Beans that support customized output of JSON text shall implement this interface.
*
*
* @author FangYidong<fangyidong@yahoo.com.cn>
*/
public interface JSONAware {

View file

@ -5,7 +5,7 @@ import java.io.Writer;
/**
* Beans that support customized output of JSON text to a writer shall implement this interface.
*
*
* @author FangYidong<fangyidong@yahoo.com.cn>
*/
public interface JSONStreamAware {

View file

@ -42,7 +42,7 @@ public interface ContentHandler {
*
* @return false if the handler wants to stop parsing after return.
* @throws ParseException
*
*
* @see #startObject
*/
boolean endObject() throws ParseException, IOException;
@ -55,7 +55,7 @@ public interface ContentHandler {
*
* @return false if the handler wants to stop parsing after return.
* @throws ParseException
*
*
* @see #endObjectEntry
*/
boolean startObjectEntry(String key) throws ParseException, IOException;
@ -65,7 +65,7 @@ public interface ContentHandler {
*
* @return false if the handler wants to stop parsing after return.
* @throws ParseException
*
*
* @see #startObjectEntry
*/
boolean endObjectEntry() throws ParseException, IOException;
@ -75,7 +75,7 @@ public interface ContentHandler {
*
* @return false if the handler wants to stop parsing after return.
* @throws ParseException
*
*
* @see #endArray
*/
boolean startArray() throws ParseException, IOException;
@ -85,7 +85,7 @@ public interface ContentHandler {
*
* @return false if the handler wants to stop parsing after return.
* @throws ParseException
*
*
* @see #startArray
*/
boolean endArray() throws ParseException, IOException;