Skip to content

Commit b810a7c

Browse files
committed
build: Fix javadoc warnings
1 parent 39dd5a0 commit b810a7c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

subprojects/json-lib-core/src/main/java/org/kordamp/json/JSONObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
* <code>{ } [ ] / \ : , = ; #</code> and if they do not look like numbers and
104104
* if they are not the reserved words <code>true</code>, <code>false</code>,
105105
* or <code>null</code>.</li>
106-
* <li>Keys can be followed by <code>=</code> or <code>=></code> as well as
106+
* <li>Keys can be followed by <code>=</code> or <code>=&gt;</code> as well as
107107
* by <code>:</code>.</li>
108108
* <li>Values can be followed by <code>;</code> <small>(semicolon)</small>
109109
* as well as by <code>,</code> <small>(comma)</small>.</li>

subprojects/json-lib-core/src/main/java/org/kordamp/json/util/JSONUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ public static String numberToString(Number n) {
493493

494494
/**
495495
* Produce a string in double quotes with backslash sequences in all the
496-
* right places. A backslash will be inserted within </, allowing JSON text
496+
* right places. A backslash will be inserted within &lt;/, allowing JSON text
497497
* to be delivered in HTML. In JSON text, a string cannot contain a control
498498
* character or an unescaped quote or backslash.<br>
499499
*

subprojects/json-lib-core/src/main/java/org/kordamp/json/util/JavaIdentifierTransformer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@
3737
*/
3838
public abstract class JavaIdentifierTransformer {
3939
/**
40-
* CamelCase transformer 'camel case' => 'camelCase'
40+
* CamelCase transformer 'camel case' =&gt; 'camelCase'
4141
*/
4242
public static final JavaIdentifierTransformer CAMEL_CASE = new CamelCaseJavaIdentifierTransformer();
4343
/**
44-
* Noop transformer '@invalid' => '@invalid'
44+
* Noop transformer '@invalid' =&gt; '@invalid'
4545
*/
4646
public static final JavaIdentifierTransformer NOOP = new NoopJavaIdentifierTransformer();
4747
/**
48-
* Strict transformer '@invalid' => JSONException
48+
* Strict transformer '@invalid' =&gt; JSONException
4949
*/
5050
public static final JavaIdentifierTransformer STRICT = new StrictJavaIdentifierTransformer();
5151
/**
52-
* Underscore transformer 'under score' => 'under_score'
52+
* Underscore transformer 'under score' =&gt; 'under_score'
5353
*/
5454
public static final JavaIdentifierTransformer UNDERSCORE = new UnderscoreJavaIdentifierTransformer();
5555
/**
56-
* Whitespace transformer 'white space' => 'whitespace'
56+
* Whitespace transformer 'white space' =&gt; 'whitespace'
5757
*/
5858
public static final JavaIdentifierTransformer WHITESPACE = new WhiteSpaceJavaIdentifierTransformer();
5959

subprojects/json-lib-core/src/main/java/org/kordamp/json/util/PropertySetStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Defines a custom setter to be used when setting object values.<br>
2929
* Specify with JsonConfig.setJsonPropertySetter().
3030
*
31-
* @author Gino Miceli <[email protected]>
31+
* @author Gino Miceli &lt;[email protected]&gt;
3232
* @author Andres Almiray
3333
*/
3434
public abstract class PropertySetStrategy {

0 commit comments

Comments
 (0)