increased maximum buffer size

This commit is contained in:
Fredrik Osterlind 2013-08-14 12:25:03 +02:00
parent fe0a0423cb
commit 37ebe133e9

View file

@ -130,7 +130,7 @@ public class BufferListener extends VisPlugin {
private static final long TIME_MINUTE = 60*TIME_SECOND;
private static final long TIME_HOUR = 60*TIME_MINUTE;
final static int MAX_BUFFER_SIZE = 128;
final static int MAX_BUFFER_SIZE = 2048;
private static ArrayList<Class<? extends Parser>> bufferParsers =
new ArrayList<Class<? extends Parser>>();