Skip to content

Commit

Permalink
Address pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnelson committed Jun 15, 2017
1 parent 64e5ccb commit 6646ac8
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,7 @@ public String getInstanceId() {
};

public Server(String host, int port) {
this.host = host;
this.port = port;
this.id = host + ":" + port;
isAliveFlag = false;
this(null, host, port);
}

public Server(String scheme, String host, int port) {
Expand Down Expand Up @@ -194,6 +191,10 @@ public void setId(String id) {
this.id = null;
}
}

public void setSchemea(String scheme) {
this.scheme = scheme;
}

public void setPort(int port) {
this.port = port;
Expand Down

0 comments on commit 6646ac8

Please sign in to comment.