From 7b98e0818dcbf05f62fea16c9dc8cfd4ef53d912 Mon Sep 17 00:00:00 2001 From: Daniel Shiffman Date: Wed, 10 Jul 2013 21:45:08 -0400 Subject: [PATCH] removing some stray code in table example --- .../Topics/Advanced Data/LoadSaveTable/LoadSaveTable.pde | 3 --- 1 file changed, 3 deletions(-) diff --git a/java/examples/Topics/Advanced Data/LoadSaveTable/LoadSaveTable.pde b/java/examples/Topics/Advanced Data/LoadSaveTable/LoadSaveTable.pde index 8f9efd440..3baeb9a8a 100644 --- a/java/examples/Topics/Advanced Data/LoadSaveTable/LoadSaveTable.pde +++ b/java/examples/Topics/Advanced Data/LoadSaveTable/LoadSaveTable.pde @@ -42,9 +42,6 @@ void loadData() { // Load CSV file into a Table object // "header" option indicates the file has a header row table = loadTable("data.csv", "header"); - - TableRow r = table.getRow(2); - int val1 = r.getInt("y"); // The size of the array of Bubble objects is determined by the total number of rows in the CSV bubbles = new Bubble[table.getRowCount()];