Skip to content

Commit

Permalink
Improve javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Oct 13, 2024
1 parent f856d02 commit 4202960
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ public double parseDouble(CharSequence str) {
* Parses a double value from a substring of the specified char sequence.
*
* @param str a char sequence
* @param offset the start offset
* @param length the length
* @param offset the start offset of the substring
* @param length the length of the substring
* @throws NumberFormatException if the provided char sequence could not be parsed
*/
public double parseDouble(CharSequence str, int offset, int length) {
Expand All @@ -189,8 +189,8 @@ public double parseDouble(char[] str) {
* Parses a double value from a substring of the specified char array.
*
* @param str a char array
* @param offset the start offset
* @param length the length
* @param offset the start offset of the substring
* @param length the length of the substring
* @throws NumberFormatException if the provided char array could not be parsed
*/
public double parseDouble(char[] str, int offset, int length) {
Expand Down

0 comments on commit 4202960

Please sign in to comment.