Merge branch 'subtree'
[fanfix.git] / src / jexer / TTableWidget.java
index d8e01909e03717bc10f60eb56793adb011e2ab27..749b7313c9e29874cacacc431305ebf81e6d70ce 100644 (file)
@@ -1383,7 +1383,7 @@ public class TTableWidget extends TWidget {
     }
 
     /**
-     * Save contents to file in CSV format.
+     * Load contents from file in CSV format.
      *
      * @param csvFile a File referencing the CSV data
      * @throws IOException if a java.io operation throws
@@ -1426,8 +1426,6 @@ public class TTableWidget extends TWidget {
                 for (int i = 0; i < list.size(); i++) {
                     rows.get(selectedRow).get(i).setText(list.get(i));
                 }
-
-                // TODO: detect header line
             }
         } finally {
             if (reader != null) {