Merge pull request #731 from lasanthaDLPDS/master

Fixing minor error in device type API implementation
merge-requests/1/head
Ayyoob Hamza 8 years ago committed by GitHub
commit 2eece980a0

@ -39,7 +39,7 @@ public class DeviceIdentifier implements Serializable{
}
public void setType(String type) {
this.type = type.toLowerCase();
this.type = type;
}
public String getId() {
return id;

Loading…
Cancel
Save