File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/main/java/net/minidev/json Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >net.minidev</groupId >
9
9
<artifactId >minidev-parent</artifactId >
10
- <version >2.2</version >
10
+ <version >2.2.1 </version >
11
11
<relativePath >../parent/pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ public String getAsString(String key) {
113
113
/**
114
114
* A Simple Helper cast an Object to an Number
115
115
*
116
- * @see JSONParserBase. parseNumber(String s)
116
+ * @see net.minidev.json.parser.JSONParserBase# parseNumber(String s)
117
117
* @return a Number or null
118
118
*/
119
119
public Number getAsNumber (String key ) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class JSONStyle {
29
29
/**
30
30
* for advanced usage sample see
31
31
*
32
- * @ see net.minidev.json.test.TestCompressorFlags
32
+ * # see net.minidev.json.test.TestCompressorFlags
33
33
*/
34
34
public final static int FLAG_PROTECT_KEYS = 1 ;
35
35
public final static int FLAG_PROTECT_4WEB = 2 ;
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ private JSONParserReader getPStream() {
133
133
/**
134
134
* cached construcor
135
135
*
136
- * @return
136
+ * @return instance of JSONParserInputStream
137
137
*/
138
138
private JSONParserInputStream getPBinStream () {
139
139
if (pBinStream == null )
@@ -144,7 +144,7 @@ private JSONParserInputStream getPBinStream() {
144
144
/**
145
145
* cached construcor
146
146
*
147
- * @return
147
+ * @return instance of JSONParserString
148
148
*/
149
149
private JSONParserString getPString () {
150
150
if (pString == null )
@@ -155,7 +155,7 @@ private JSONParserString getPString() {
155
155
/**
156
156
* cached construcor
157
157
*
158
- * @return
158
+ * @return instance of JSONParserByteArray
159
159
*/
160
160
private JSONParserByteArray getPBytes () {
161
161
if (pBytes == null )
Original file line number Diff line number Diff line change 112
112
<!-- ONLY NEEDED With jdk 1.7+ -->
113
113
<configuration >
114
114
<failOnError >false</failOnError >
115
- <additionalparam >-Xdoclint:none</additionalparam >
115
+ <!-- < additionalparam>-Xdoclint:none</additionalparam> -- >
116
116
</configuration >
117
117
<executions >
118
118
<execution >
You can’t perform that action at this time.
0 commit comments