commit | 4ee118bf2bf6034e210fd5fba7689cc92cec932c | [log] [tgz] |
---|---|---|
author | cromwellian <cromwellian@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Sat Aug 01 17:52:15 2009 +0000 |
committer | cromwellian <cromwellian@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Sat Aug 01 17:52:15 2009 +0000 |
tree | f64a8bcefd4f7f7705b61627e218dec84e653d75 | |
parent | 5002ee63ccafeb6514dd530cb26e4beaa124146a [diff] |
Duplicate line in JsContinue traverse method. git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5866 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/js/ast/JsContinue.java b/dev/core/src/com/google/gwt/dev/js/ast/JsContinue.java index 20c7556..5f5be05 100644 --- a/dev/core/src/com/google/gwt/dev/js/ast/JsContinue.java +++ b/dev/core/src/com/google/gwt/dev/js/ast/JsContinue.java
@@ -38,7 +38,6 @@ } public void traverse(JsVisitor v, JsContext<JsStatement> ctx) { - v.visit(this, ctx); if (v.visit(this, ctx)) { if (label != null) { v.accept(label);