Consistently use camelCase in Gerrit Client

In the Gerrit Client classes that represent the JSON entities
retrieved from the server we have a mix of camelCase and
underscore_case method names. Make it consistent by always using
camelCase.

Change-Id: I5ba3a0e52bbfc6d1b9d224461b8a45952ab93b3a
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2015-05-19 11:40:48 +02:00
committed by Edwin Kempin
parent baa72847a4
commit 0ec1e17477
64 changed files with 379 additions and 379 deletions

View File

@@ -116,7 +116,7 @@ class PatchSetSelectBox extends Composite {
linkPanel.add(createEditIcon());
}
}
List<WebLinkInfo> webLinks = Natives.asList(meta.web_links());
List<WebLinkInfo> webLinks = Natives.asList(meta.webLinks());
if (webLinks != null) {
for (WebLinkInfo webLink : webLinks) {
linkPanel.add(webLink.toAnchor());