@@ -9626,7 +9626,6 @@ static public String nfs(int num, int digits) {
96269626
96279627 /**
96289628 * @param nums the numbers to format
9629- * @param digits number of digits to pad with zeroes
96309629 */
96319630 static public String[] nfs(int nums[], int digits) {
96329631 String formatted[] = new String[nums.length];
@@ -9665,7 +9664,6 @@ static public String nfp(int num, int digits) {
96659664 }
96669665 /**
96679666 * @param nums the numbers to format
9668- * @param digits number of digits to pad with zeroes
96699667 */
96709668 static public String[] nfp(int nums[], int digits) {
96719669 String formatted[] = new String[nums.length];
@@ -9720,7 +9718,6 @@ static public String nf(float num, int left, int right) {
97209718 }
97219719
97229720 /**
9723- * @param nums the numbers to format
97249721 * @param right number of digits to the right of the decimal point
97259722 */
97269723 static public String[] nfc(float nums[], int right) {
@@ -9731,10 +9728,6 @@ static public String[] nfc(float nums[], int right) {
97319728 return formatted;
97329729 }
97339730
9734- /**
9735- * @param num the number to format
9736- * @param right number of digits to the right of the decimal point
9737- */
97389731 static public String nfc(float num, int right) {
97399732 if ((float_nf != null) &&
97409733 (float_nf_left == 0) &&
@@ -9771,7 +9764,6 @@ static public String[] nfs(float nums[], int left, int right) {
97719764 }
97729765
97739766 /**
9774- * @param num the number to format
97759767 * @param left the number of digits to the left of the decimal point
97769768 * @param right the number of digits to the right of the decimal point
97779769 */
@@ -9780,7 +9772,6 @@ static public String nfs(float num, int left, int right) {
97809772 }
97819773
97829774 /**
9783- * @param nums the number to format
97849775 * @param left the number of digits to the left of the decimal point
97859776 * @param right the number of digits to the right of the decimal point
97869777 */
@@ -9792,11 +9783,6 @@ static public String[] nfp(float nums[], int left, int right) {
97929783 return formatted;
97939784 }
97949785
9795- /**
9796- * @param num the number to format
9797- * @param left the number of digits to the left of the decimal point
9798- * @param right the number of digits to the right of the decimal point
9799- */
98009786 static public String nfp(float num, int left, int right) {
98019787 return (num < 0) ? nf(num, left, right) : ('+' + nf(num, left, right));
98029788 }
0 commit comments