Merge pull request #7 from Malintha/devicetype-3.1.0

Fix : Store device type names as it is
This commit is contained in:
Ayyoob Hamza 2017-05-31 10:31:59 +05:30 committed by GitHub
commit 658cefd539

View File

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