Removing unused variable

This commit is contained in:
Mohammad Yasir 2017-02-16 03:00:02 +05:30
parent 410b4a8c62
commit ba4643134a

View File

@ -1024,7 +1024,6 @@ public class JsonReader implements Closeable {
if(null == builder) {
int len = (p - start) * 2;
initialLength = len;
builder = new StringBuilder(len < 16 ? 16 : len);
}
builder.append(buffer, start, p - start);