fixing letter case issue

This commit is contained in:
lasantha 2017-06-30 10:00:02 +05:30
parent 5754b025f5
commit 7c8eb3a736

View File

@ -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;