aboutsummaryrefslogtreecommitdiff
path: root/src/org/json/simple/parser/ContentHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/json/simple/parser/ContentHandler.java')
-rw-r--r--src/org/json/simple/parser/ContentHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/json/simple/parser/ContentHandler.java b/src/org/json/simple/parser/ContentHandler.java
index a704485..5ed233d 100644
--- a/src/org/json/simple/parser/ContentHandler.java
+++ b/src/org/json/simple/parser/ContentHandler.java
@@ -62,7 +62,7 @@ public interface ContentHandler {
62 * 62 *
63 * @see #endObjectEntry 63 * @see #endObjectEntry
64 */ 64 */
65 boolean startObjectEntry(String key) throws ParseException, IOException; 65 boolean startObjectEntry(final String key) throws ParseException, IOException;
66 66
67 /** 67 /**
68 * Receive notification of the end of the value of previous object entry. 68 * Receive notification of the end of the value of previous object entry.
@@ -105,6 +105,6 @@ public interface ContentHandler {
105 * @return false if the handler wants to stop parsing after return. 105 * @return false if the handler wants to stop parsing after return.
106 * @throws ParseException 106 * @throws ParseException
107 */ 107 */
108 boolean primitive(Object value) throws ParseException, IOException; 108 boolean primitive(final Object value) throws ParseException, IOException;
109 109
110} 110}