Skip to content

Commit 3200f66

Browse files
committed
Javadoc fix-ups.
1 parent ba79395 commit 3200f66

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/main/java/org/owasp/esapi/Encoder.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,10 @@
149149
* </li>
150150
* </ul>
151151
*
152-
* @see <a href="https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html">OWASP Cross-Site Scripting Prevention Cheat Sheet</a>.
152+
* @see <a href="https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html">OWASP Cross-Site Scripting Prevention Cheat Sheet</a>
153153
* @see <a href="https://owasp.org/www-project-proactive-controls/v3/en/c4-encode-escape-data">OWASP Proactive Controls: C4: Encode and Escape Data</a>
154-
* @see <a href="https://www.onwebsecurity.com/security/properly-encoding-and-escaping-for-the-web.html">Properly encoding and escaping for the web.</a>
155-
* @author Jeff Williams (jeff.williams .at. aspectsecurity.com) <a
156-
* href="http://www.aspectsecurity.com">Aspect Security</a>
154+
* @see <a href="https://www.onwebsecurity.com/security/properly-encoding-and-escaping-for-the-web.html" target="_blank" rel="noopener noreferrer">Properly encoding and escaping for the web</a>
155+
* @author Jeff Williams (jeff.williams .at. owasp.org)
157156
* @since June 1, 2007
158157
*/
159158
public interface Encoder {
@@ -167,7 +166,7 @@ public interface Encoder {
167166
* Encoder.AllowMixedEncoding=false
168167
* </pre>
169168
*
170-
* @see Encoder#canonicalize(String, boolean, boolean) canonicalize
169+
* @see #canonicalize(String, boolean, boolean)
171170
* @see <a href="http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4">W3C specifications</a>
172171
*
173172
* @param input the text to canonicalize
@@ -178,7 +177,7 @@ public interface Encoder {
178177
/**
179178
* This method is the equivalent to calling {@code Encoder.canonicalize(input, strict, strict);}.
180179
*
181-
* @see Encoder#canonicalize(String, boolean, boolean) canonicalize
180+
* @see #canonicalize(String, boolean, boolean)
182181
* @see <a href="http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4">W3C specifications</a>
183182
*
184183
* @param input

0 commit comments

Comments
 (0)