Skip to content

Commit 6d49070

Browse files
committed
Remove unused field
1 parent 5470bca commit 6d49070

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

dev/core/src/com/google/gwt/dev/jjs/impl/ToStringGenerationVisitor.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@ public class ToStringGenerationVisitor extends TextOutputVisitor {
155155

156156
private boolean needSemi = true;
157157

158-
private boolean suppressType = false;
159-
160158
public ToStringGenerationVisitor(TextOutput textOutput) {
161159
super(textOutput);
162160
}
@@ -505,13 +503,11 @@ public boolean visit(JForStatement x, Context ctx) {
505503
JStatement stmt = iter.next();
506504
accept(stmt);
507505
}
508-
suppressType = true;
509506
while (iter.hasNext()) {
510507
print(CHARS_COMMA);
511508
JStatement stmt = iter.next();
512509
accept(stmt);
513510
}
514-
suppressType = false;
515511

516512
semi();
517513
space();

0 commit comments

Comments
 (0)