diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index b84ad37cb..71eafdd2e 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -1297,11 +1297,15 @@ public class Table { /** * @webref table:method * @brief Removes a column from the table + * @param columnName the title of the column to be removed */ public void removeColumn(String columnName) { removeColumn(getColumnIndex(columnName)); } + /** + * @param column the index number of the column to be removed + */ public void removeColumn(int column) { int newCount = columns.length - 1;