Skip to content

Commit e426579

Browse files
committed
Fixes for nfs(), helps the Reference at the expense of the JavaDoc
1 parent 6a2ed25 commit e426579

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

core/src/processing/core/PApplet.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9751,7 +9751,6 @@ static public String nfc(float num, int right) {
97519751

97529752

97539753
/**
9754-
* @param nums the numbers to format
97559754
* @param left the number of digits to the left of the decimal point
97569755
* @param right the number of digits to the right of the decimal point
97579756
*/
@@ -9763,10 +9762,6 @@ static public String[] nfs(float nums[], int left, int right) {
97639762
return formatted;
97649763
}
97659764

9766-
/**
9767-
* @param left the number of digits to the left of the decimal point
9768-
* @param right the number of digits to the right of the decimal point
9769-
*/
97709765
static public String nfs(float num, int left, int right) {
97719766
return (num < 0) ? nf(num, left, right) : (' ' + nf(num, left, right));
97729767
}

0 commit comments

Comments
 (0)