Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some jdoc warnings
  • Loading branch information
jhy committed Feb 9, 2020
1 parent 52bbe52 commit 1c51c84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/jsoup/internal/StringUtil.java
Expand Up @@ -237,7 +237,6 @@ public static String resolve(final String baseUrl, final String relUrl) {
* <p>
* Care must be taken to release the builder once its work has been completed, with {@link #releaseBuilder}
* @return an empty StringBuilder
* @
*/
public static StringBuilder borrowBuilder() {
synchronized (builders) {
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/org/jsoup/nodes/Element.java
Expand Up @@ -135,8 +135,9 @@ public String tagName() {

/**
* Get the normalized name of this Element's tag. This will always be the lowercased version of the tag, regardless
* of the tag case preserving setting of the parser.
* @return
* of the tag case preserving setting of the parser. For e.g., {@code <DIV>} and {@code <div>} both have a
* normal name of {@code div}.
* @return normal name
*/
public String normalName() {
return tag.normalName();
Expand Down

0 comments on commit 1c51c84

Please sign in to comment.