We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e0649b commit a17ee1cCopy full SHA for a17ee1c
org/w3c/css/parser/analyzer/SimpleCharStream.java
@@ -40,7 +40,7 @@ public class SimpleCharStream
40
41
protected void ExpandBuff(boolean wrapAround)
42
{
43
- int newBufsize = bufsize >> 1;
+ int newBufsize = bufsize << 1;
44
char[] newbuffer = new char[newBufsize];
45
int newbufline[] = new int[newBufsize];
46
int newbufcolumn[] = new int[newBufsize];
0 commit comments