@@ -464,17 +464,17 @@ private BigInteger(int signum, int[] magnitude) {
464
464
* specified radix into a BigInteger. The String representation
465
465
* consists of an optional minus or plus sign followed by a
466
466
* 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).
470
471
*
471
472
* @param val String representation of BigInteger.
472
473
* @param radix radix to be used in interpreting {@code val}.
473
474
* @throws NumberFormatException {@code val} is not a valid representation
474
475
* of a BigInteger in the specified radix, or {@code radix} is
475
476
* outside the range from {@link Character#MIN_RADIX} to
476
477
* {@link Character#MAX_RADIX}, inclusive.
477
- * @see Character#digit
478
478
*/
479
479
public BigInteger (String val , int radix ) {
480
480
int cursor = 0 , numDigits ;
@@ -658,17 +658,17 @@ private static void destructiveMulAdd(int[] x, int y, int z) {
658
658
}
659
659
660
660
/**
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).
667
668
*
668
669
* @param val decimal String representation of BigInteger.
669
670
* @throws NumberFormatException {@code val} is not a valid representation
670
671
* of a BigInteger.
671
- * @see Character#digit
672
672
*/
673
673
public BigInteger (String val ) {
674
674
this (val , 10 );
0 commit comments