Skip to content

Commit 926d7cb

Browse files
marknolanCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <[email protected]>
1 parent 25d70fa commit 926d7cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ShimmerDriver/src/main/java/com/shimmerresearch/driverUtilities/EepromSensorSettingsDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void parseEepromSensorSettingsDetails(byte[] byteArray) {
121121

122122
public String generateDebugString() {
123123
return (mRadioState.toString() + ", USB Speed: "
124-
+ (mUsbHighSpeed == true ? USB_SPEED.HIGH_SPEED.toString() : USB_SPEED.FULL_SPEED.toString()));
124+
+ (mUsbHighSpeed ? USB_SPEED.HIGH_SPEED.toString() : USB_SPEED.FULL_SPEED.toString()));
125125
}
126126

127127
public void setBtRadioStateFromString(String option) {

0 commit comments

Comments
 (0)