Skip to content

Commit 416a971

Browse files
committed
lint code
1 parent 230acf5 commit 416a971

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

json-smart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.minidev</groupId>
99
<artifactId>minidev-parent</artifactId>
10-
<version>2.2</version>
10+
<version>2.2.1</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public String getAsString(String key) {
113113
/**
114114
* A Simple Helper cast an Object to an Number
115115
*
116-
* @see JSONParserBase.parseNumber(String s)
116+
* @see net.minidev.json.parser.JSONParserBase#parseNumber(String s)
117117
* @return a Number or null
118118
*/
119119
public Number getAsNumber(String key) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class JSONStyle {
2929
/**
3030
* for advanced usage sample see
3131
*
32-
* @see net.minidev.json.test.TestCompressorFlags
32+
* #see net.minidev.json.test.TestCompressorFlags
3333
*/
3434
public final static int FLAG_PROTECT_KEYS = 1;
3535
public final static int FLAG_PROTECT_4WEB = 2;

json-smart/src/main/java/net/minidev/json/parser/JSONParser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private JSONParserReader getPStream() {
133133
/**
134134
* cached construcor
135135
*
136-
* @return
136+
* @return instance of JSONParserInputStream
137137
*/
138138
private JSONParserInputStream getPBinStream() {
139139
if (pBinStream == null)
@@ -144,7 +144,7 @@ private JSONParserInputStream getPBinStream() {
144144
/**
145145
* cached construcor
146146
*
147-
* @return
147+
* @return instance of JSONParserString
148148
*/
149149
private JSONParserString getPString() {
150150
if (pString == null)
@@ -155,7 +155,7 @@ private JSONParserString getPString() {
155155
/**
156156
* cached construcor
157157
*
158-
* @return
158+
* @return instance of JSONParserByteArray
159159
*/
160160
private JSONParserByteArray getPBytes() {
161161
if (pBytes == null)

parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<!-- ONLY NEEDED With jdk 1.7+ -->
113113
<configuration>
114114
<failOnError>false</failOnError>
115-
<additionalparam>-Xdoclint:none</additionalparam>
115+
<!-- <additionalparam>-Xdoclint:none</additionalparam> -->
116116
</configuration>
117117
<executions>
118118
<execution>

0 commit comments

Comments
 (0)