Alessandro Del Pex
Alessandro Del Pex
I could solve this removing blank lines in vocab.csv and vocab_inv.csv
I'm sorry for Android Studio formatting :( the real substance of the commit is a try catch to avoid NoSuchElementException in case of empty chart
+1 int y = yCoordinateList.get(verticalGridNum - dataLists.get(k).get(i)); this line crashes, I guess looking for non-existing (negative) y coord
using a BAD workaround, not to make the app crash: try{ y = yCoordinateList.get(verticalGridNum - dataLists.get(k).get(i)); }catch (IndexOutOfBoundsException boh){ y = 0; }