Skip to content
Snippets Groups Projects
Commit 6fb8725a authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

put back data size limit but increased it to 100

parent 77deffab
No related branches found
No related tags found
No related merge requests found
......@@ -132,8 +132,11 @@ public class CSVUtil {
}
}
}
ll.addAll(l);
// TODO : should we remove this limit ???
if(l.size() > 100)
{
ll.addAll(l.subList(0,99));
}
data.put(c, ll);
}
} catch (IOException e) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment