summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2016-03-15 16:28:08 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2016-03-15 16:28:08 +0900
commit6ce4fc981313222bee1cbaa2ca77013c7741b2a2 (patch)
tree162d1ecd37fb18d482ecfb3934d160ac0b24266f
parent9e7bfeccf1ef2079d23739eaf53f52168bdd85b1 (diff)
ListCommand: Consistently capitalize json property names
-rw-r--r--src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java b/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
index 3bb1e22..3546b0d 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
@@ -71,7 +71,7 @@ final class ListCommand extends SshCommand {
private void printRemote(Destination d, boolean detail) {
if (json) {
JsonObject obj = new JsonObject();
- obj.addProperty("remote", d.getRemoteConfig().getName());
+ obj.addProperty("Remote", d.getRemoteConfig().getName());
addProperty(obj, "Url", d.getUrls());
if (detail) {
addProperty(obj, "AdminUrl", d.getAdminUrls());