Skip to content

Commit

Permalink
javadoc clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed Aug 29, 2020
1 parent ea3d43d commit 32aa072
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ public InputStream load(
}
} catch (IOException ioe) {
return null;
} catch (RuntimeException re) {
return null;
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4916,7 +4916,9 @@ public Builder<T> addIgnorableWhitespace() {
/**
* <p>Skips all characters from input as unparseable until at least given count of characters is left. </p>
*
* <p>Note: This method is only relevant for parsing. During printing, this method does nothing. </p>
* <p>Note: This method is only relevant for parsing. If the argument is zero then the method is equivalent
* to setting the format attribute {@code Attributes.TRAILING_CHARACTERS}. During printing, this method does
* nothing. </p>
*
* @param keepRemainingChars minimum count of characters which should be reserved for following steps
* @return this instance for method chaining
Expand All @@ -4929,7 +4931,9 @@ public Builder<T> addIgnorableWhitespace() {
* <p>Ignoriert alle Zeichen als nicht-interpretierbar, bis wenigstens die angegebene Anzahl von Zeichen
* &uuml;brigbleibt. </p>
*
* <p>Hinweis: Diese Methode ist nur beim Parsen relevant, in der Textausgabe macht die Methode nichts. </p>
* <p>Hinweis: Diese Methode ist nur beim Parsen relevant. Wenn das Argument den Wert 0 hat, dann ist diese
* Methode &auml;quivalent zum Setzen des Formatattributs {@code Attributes.TRAILING_CHARACTERS}. In der
* Textausgabe macht die Methode nichts. </p>
*
* @param keepRemainingChars minimum count of characters which should be reserved for following steps
* @return this instance for method chaining
Expand Down

0 comments on commit 32aa072

Please sign in to comment.