Remove CATEGORY as a parameter for Table.addColumn() pointed out in processing/processing-docs#501

This commit is contained in:
REAS
2016-11-22 20:03:35 -08:00
parent a470c951f4
commit 30ea717b7b

View File

@@ -1790,7 +1790,7 @@ public class Table {
/**
* @param type the type to be used for the new column: INT, LONG, FLOAT, DOUBLE, STRING, or CATEGORY
* @param type the type to be used for the new column: INT, LONG, FLOAT, DOUBLE, or STRING
*/
public void addColumn(String title, int type) {
insertColumn(columns.length, title, type);