Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 708176537
  • Loading branch information
DeviceInfra authored and copybara-github committed Dec 20, 2024
1 parent 6a0f258 commit be0f2af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ public Map<String, DispatchType> dispatchDevices(

@Override
public DeviceId generateDeviceId(String deviceControlId) {
return DeviceId.of(deviceControlId, deviceControlId /* deviceUuid */);
return DeviceId.of(deviceControlId, /* uuid= */ deviceControlId);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public DeviceId generateDeviceId(String deviceControlId) {
} else {
logger.atWarning().log(
"Can not find previous uuid for device: %s, using controlId for uuid!", deviceControlId);
return DeviceId.of(deviceControlId, deviceControlId /* deviceUuid */);
return DeviceId.of(deviceControlId, /* uuid= */ deviceControlId);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class LiteDeviceInfoFactory {

public static DeviceInfo create(String deviceControlId) {
return create(DeviceId.of(deviceControlId, deviceControlId /* deviceUuid */));
return create(DeviceId.of(deviceControlId, /* uuid= */ deviceControlId));
}

public static DeviceInfo create(DeviceId deviceId) {
Expand Down

0 comments on commit be0f2af

Please sign in to comment.