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:
committed by
Edwin Kempin
parent
baa72847a4
commit
0ec1e17477
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user