fixed incorrect TraccarDevice constructor

pull/21/head
Deenath Geeganage 2 years ago
parent 04fa149433
commit c9a65e6b7d

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

Loading…
Cancel
Save