Removed unused variable in StringBuilder.

This commit is contained in:
Eric Scharff 2007-12-14 16:16:40 -07:00
parent 12e10b57f5
commit 5af58548b7

View File

@ -95,7 +95,6 @@ public class StringBuilder {
flush();
int index = length;
Cell p = null;
for (Cell c = chain; c != null; c = c.next) {
int start = index - c.value.length();
index = start;