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

removed limit of data

parent f62e64c8
No related branches found
No related tags found
No related merge requests found
......@@ -132,11 +132,8 @@ public class CSVUtil {
}
}
}
// TODO : Remove this limit -> only to avoid bug with Virtua's front-end
if(l.size() > 50)
{
ll.addAll(l.subList(0,49));
}
ll.addAll(l);
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