Fix a bug in the update function

This commit is contained in:
Cameron Gutman 2014-07-04 14:39:28 -07:00
parent 707c7a1a53
commit aaa73eb196

View File

@ -24,6 +24,7 @@ public class ComputerDetails {
public void update(ComputerDetails details) {
this.state = details.state;
this.reachability = details.reachability;
this.name = details.name;
this.uuid = details.uuid;
this.localIp = details.localIp;