I did a spot check. There is one odd thing that happens with the new settings on eclipse 3.5 (found in JsCatchScope)
@Override
protected JsName findExistingNameNoRecurse(String ident) {
if (name.getIdent().equals(ident)) {
return name;
}
}
becomes
@Override
protected JsName findExistingNameNoRecurse(String ident) {
if (name.getIdent()
.equals(ident)) {
return name;
}
}
http://gwt-code-reviews.appspot.com/1346803/show
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors
