Skip to content
Snippets Groups Projects
Commit 3bf1c6ef authored by Tim Molter's avatar Tim Molter
Browse files

remove sysout

parent f9f77882
No related branches found
No related tags found
No related merge requests found
...@@ -135,7 +135,6 @@ public class CSVImporter { ...@@ -135,7 +135,6 @@ public class CSVImporter {
String[] stringDataArray = stringData.split(","); String[] stringDataArray = stringData.split(",");
for (int i = 0; i < stringDataArray.length; i++) { for (int i = 0; i < stringDataArray.length; i++) {
String dataPoint = stringDataArray[i]; String dataPoint = stringDataArray[i];
System.out.println(dataPoint);
BigDecimal value = new BigDecimal(dataPoint); BigDecimal value = new BigDecimal(dataPoint);
axisData.add(value); axisData.add(value);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment