Пример #1
0
 /** Get a link to the change; null if the server doesn't know its own address. */
 public String getChangeUrl() {
   if (change != null && getGerritUrl() != null) {
     final StringBuilder r = new StringBuilder();
     r.append(getGerritUrl());
     r.append(change.getChangeId());
     return r.toString();
   }
   return null;
 }