src/share/classes/java/math/SignedMutableBigInteger.java

Print this page

        

*** 127,137 **** /** * Print out the first intLen ints of this MutableBigInteger's value * array starting at offset. */ public String toString() { ! BigInteger b = new BigInteger(this, sign); ! return ! b.toString(); } } --- 127,135 ---- /** * Print out the first intLen ints of this MutableBigInteger's value * array starting at offset. */ public String toString() { ! return this.toBigInteger(sign).toString(); } }