Merge pull request 'fixed incorrect TraccarDevice constructor' (#9) from traccar_consistency_issue into master

Reviewed-on: deenath/device-mgt-core#9
pull/21/head
Deenath Geeganage 2 years ago
commit 53299eca4b

@ -55,9 +55,9 @@ public class TraccarDevice {
this.category =category; this.category =category;
} }
public TraccarDevice(int id, String deviceIdentifier, String deviceName) { public TraccarDevice(int id, String uniqueId, String deviceName) {
this.id = id; this.id = id;
this.deviceIdentifier = deviceIdentifier; this.uniqueId = uniqueId;
this.deviceName = deviceName; this.deviceName = deviceName;
} }

Loading…
Cancel
Save