public boolean equals()

in src/main/java/com/gerritforge/gerrit/plugins/account/DeleteAccount.java [39:48]


    public boolean equals(Object obj) {
      if (this == obj) return true;
      if (obj == null) return false;
      if (getClass() != obj.getClass()) return false;
      Input other = (Input) obj;
      if (accountName == null) {
        if (other.accountName != null) return false;
      } else if (!accountName.equals(other.accountName)) return false;
      return true;
    }