From 30ea717b7bd02bdd677c5ab7ab63f9e94b0abe7a Mon Sep 17 00:00:00 2001 From: REAS Date: Tue, 22 Nov 2016 20:03:35 -0800 Subject: [PATCH] Remove CATEGORY as a parameter for Table.addColumn() pointed out in processing/processing-docs#501 --- core/src/processing/data/Table.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index 17aab1245..307b9df67 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -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);