mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
make trim(String[]) handle arrays, Table.trim() handles columns
This commit is contained in:
@@ -4045,6 +4045,7 @@ public class Table {
|
||||
* @see Table#removeTokens(String)
|
||||
*/
|
||||
public void trim() {
|
||||
columnTitles = PApplet.trim(columnTitles);
|
||||
for (int col = 0; col < getColumnCount(); col++) {
|
||||
trim(col);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user