int rowId = Integer.parseInt(rowIdStr);
rowIndex = rowId - 1;
}
LinkedHashMap<String, String> csvData = csvDataSet.get(rowIndex);
csvData.remove("COMMENT");
setTestData(new TestDataImpl(1, csvData));
} else {
JOptionPane.showMessageDialog(TestDataEditor.this, "No test data found in file!", "Error", JOptionPane.ERROR_MESSAGE);
}
} catch (IOException ex) {
logger.error(ex.getMessage());