Fix indentation in RelatedChanges.java

In 68cfe47339 a block of code
was moved, but the indentation was not kept.

Change-Id: I68b8b5f446ea5880dd1ae0c1190c27141deb223a
This commit is contained in:
David Pursehouse
2014-05-13 10:07:57 +09:00
parent 68cfe47339
commit 5be2008cb6

View File

@@ -175,12 +175,12 @@ public class RelatedChanges extends TabPanel {
}
ChangeApi.revision(info.legacy_id().get(), revision).view("related")
.get(new TabCallback<RelatedInfo>(Tab.RELATED_CHANGES, info.project(), revision) {
@Override
public JsArray<ChangeAndCommit> convert(RelatedInfo result) {
return result.changes();
}
});
.get(new TabCallback<RelatedInfo>(Tab.RELATED_CHANGES, info.project(), revision) {
@Override
public JsArray<ChangeAndCommit> convert(RelatedInfo result) {
return result.changes();
}
});
StringBuilder cherryPicksQuery = new StringBuilder();
cherryPicksQuery.append(op("project", info.project()));