Skip to content

Commit 9d45504

Browse files
committed
Fix java 8 building error
1 parent 89ed91a commit 9d45504

22 files changed

+24
-25
lines changed

json-smart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<!-- My old Is back -->
9696
<gpg.keyname>2C8DF6EC</gpg.keyname>
9797
<!-- <gpg.keyname>8E322ED0</gpg.keyname> -->
98-
<!-- <gpg.keyname>Uriel Chemouni (dev) <[email protected]></gpg.keyname> -->
98+
<!-- <gpg.keyname>Uriel Chemouni (dev) [email protected]</gpg.keyname> -->
9999
<!-- GPG Key ID to use for signing -->
100100
</properties>
101101
<build>

json-smart/src/main/java/net/minidev/json/JSONArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/**
2525
* A JSON array. JSONObject supports java.util.List interface.
2626
*
27-
* @author FangYidong<[email protected]>
28-
* @author Uriel Chemouni <[email protected]>
27+
* @author FangYidong &lt;[email protected]&gt;
28+
* @author Uriel Chemouni &lt;[email protected]&gt;
2929
*/
3030
public class JSONArray extends ArrayList<Object> implements List<Object>, JSONAwareEx, JSONStreamAwareEx {
3131
private static final long serialVersionUID = 9106884089231309568L;

json-smart/src/main/java/net/minidev/json/JSONAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Beans that support customized output of JSON text shall implement this
2020
* interface.
2121
*
22-
* @author FangYidong<[email protected]>
22+
* @author FangYidong &lt;[email protected]&gt;
2323
*/
2424
public interface JSONAware {
2525
/**

json-smart/src/main/java/net/minidev/json/JSONAwareEx.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* Adding compressions and formating features
2222
*
23-
* @author Uriel Chemouni <[email protected]>
23+
* @author Uriel Chemouni &lt;[email protected]&gt;
2424
*/
2525

2626
public interface JSONAwareEx extends JSONAware{

json-smart/src/main/java/net/minidev/json/JSONNavi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* @since 1.0.9
2929
*
30-
* @author Uriel Chemouni <[email protected]>
30+
* @author Uriel Chemouni &lt;[email protected]&gt;
3131
*/
3232
public class JSONNavi<T> {
3333
private JsonReaderI<? super T> mapper;

json-smart/src/main/java/net/minidev/json/JSONObject.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
* A JSON object. Key value pairs are unordered. JSONObject supports
2626
* java.util.Map interface.
2727
*
28-
* @author FangYidong<[email protected]>
29-
* @author Uriel Chemouni <[email protected]>
28+
* @author FangYidong &lt;[email protected]&gt;
29+
* @author Uriel Chemouni &lt;[email protected]&gt;
3030
*/
3131
public class JSONObject extends HashMap<String, Object> implements JSONAware, JSONAwareEx, JSONStreamAwareEx {
3232
private static final long serialVersionUID = -503443796854799292L;
@@ -113,7 +113,6 @@ public String getAsString(String key) {
113113
/**
114114
* A Simple Helper cast an Object to an Number
115115
*
116-
* @see net.minidev.json.parser.JSONParserBase#parseNumber(String s)
117116
* @return a Number or null
118117
*/
119118
public Number getAsNumber(String key) {

json-smart/src/main/java/net/minidev/json/JSONStreamAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Beans that support customized output of JSON text to a writer shall implement
2222
* this interface.
2323
*
24-
* @author FangYidong<[email protected]>
24+
* @author FangYidong &lt;[email protected]&gt;
2525
*/
2626
public interface JSONStreamAware {
2727
/**

json-smart/src/main/java/net/minidev/json/JSONStreamAwareEx.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Beans that support customized output of JSON text to a writer shall implement
2222
* this interface.
2323
*
24-
* @author FangYidong<[email protected]>
24+
* @author FangYidong &lt;[email protected]&gt;
2525
*/
2626
public interface JSONStreamAwareEx extends JSONStreamAware {
2727
/**

json-smart/src/main/java/net/minidev/json/JSONStyle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* JSONStyle object configure JSonSerializer reducing output size
2525
*
26-
* @author Uriel Chemouni <[email protected]>
26+
* @author Uriel Chemouni &lt;[email protected]&gt;
2727
*/
2828
public class JSONStyle {
2929
/**

json-smart/src/main/java/net/minidev/json/JSONValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* The most commonly use methode are {@link #parse(String)}
4343
* {@link #toJSONString(Object)}
4444
*
45-
* @author Uriel Chemouni <[email protected]>
45+
* @author Uriel Chemouni &lt;[email protected]&gt;
4646
*/
4747
public class JSONValue {
4848
/**

0 commit comments

Comments
 (0)