Skip to content

Commit 99c7b2b

Browse files
committedAug 6, 2020
8249273: Documentation of BigInteger(String) constructor does not mention leading plus
Reviewed-by: bpb
1 parent db4d59c commit 99c7b2b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

‎src/java.base/share/classes/java/math/BigInteger.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -464,17 +464,17 @@ private BigInteger(int signum, int[] magnitude) {
464464
* specified radix into a BigInteger. The String representation
465465
* consists of an optional minus or plus sign followed by a
466466
* sequence of one or more digits in the specified radix. The
467-
* character-to-digit mapping is provided by {@code
468-
* Character.digit}. The String may not contain any extraneous
469-
* characters (whitespace, for example).
467+
* character-to-digit mapping is provided by {@link
468+
* Character#digit(char, char) Character.digit}. The String may
469+
* not contain any extraneous characters (whitespace, for
470+
* example).
470471
*
471472
* @param val String representation of BigInteger.
472473
* @param radix radix to be used in interpreting {@code val}.
473474
* @throws NumberFormatException {@code val} is not a valid representation
474475
* of a BigInteger in the specified radix, or {@code radix} is
475476
* outside the range from {@link Character#MIN_RADIX} to
476477
* {@link Character#MAX_RADIX}, inclusive.
477-
* @see Character#digit
478478
*/
479479
public BigInteger(String val, int radix) {
480480
int cursor = 0, numDigits;
@@ -658,17 +658,17 @@ private static void destructiveMulAdd(int[] x, int y, int z) {
658658
}
659659

660660
/**
661-
* Translates the decimal String representation of a BigInteger into a
662-
* BigInteger. The String representation consists of an optional minus
663-
* sign followed by a sequence of one or more decimal digits. The
664-
* character-to-digit mapping is provided by {@code Character.digit}.
665-
* The String may not contain any extraneous characters (whitespace, for
666-
* example).
661+
* Translates the decimal String representation of a BigInteger
662+
* into a BigInteger. The String representation consists of an
663+
* optional minus or plus sign followed by a sequence of one or
664+
* more decimal digits. The character-to-digit mapping is
665+
* provided by {@link Character#digit(char, char)
666+
* Character.digit}. The String may not contain any extraneous
667+
* characters (whitespace, for example).
667668
*
668669
* @param val decimal String representation of BigInteger.
669670
* @throws NumberFormatException {@code val} is not a valid representation
670671
* of a BigInteger.
671-
* @see Character#digit
672672
*/
673673
public BigInteger(String val) {
674674
this(val, 10);

0 commit comments

Comments
 (0)
Please sign in to comment.