[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. * Beans that support customized output of JSON text shall implement this interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface JSONAware { 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. * Beans that support customized output of JSON text to a writer shall implement this interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong<fangyidong@yahoo.com.cn>
*/ */
public interface JSONStreamAware { public interface JSONStreamAware {

View File

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