Skip to content

Commit aac2c76

Browse files
committed
More Javadoc clean-up.
1 parent 30c8512 commit aac2c76

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/org/owasp/esapi/codecs/JavaScriptCodec.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,14 @@ public String encodeCharacter( char[] immune, Character c ) {
8080
*
8181
* Returns the decoded version of the character starting at index, or
8282
* null if no decoding is possible.
83-
* See http://www.planetpdf.com/codecuts/pdfs/tutorial/jsspec.pdf
83+
* </p><p>
8484
* Formats all are legal both upper/lower case:
85+
* <pre>
8586
* \\a - special characters
8687
* \\xHH
8788
* \\uHHHH
8889
* \\OOO (1, 2, or 3 digits)
90+
* </pre>
8991
*/
9092
public Character decodeCharacter( PushbackSequence<Character> input ) {
9193
input.mark();
@@ -215,4 +217,4 @@ public Character decodeCharacter( PushbackSequence<Character> input ) {
215217
return null;
216218
}
217219

218-
}
220+
}

0 commit comments

Comments
 (0)