From beb9b63ddaa69f7d0ed6999aeabc5930e2b22b5c Mon Sep 17 00:00:00 2001 From: Rachel Blackman Date: Tue, 26 May 2026 17:06:03 -0700 Subject: [PATCH] Remove a log and some commented code. --- .../app/src/main/java/org/libsdl/app/HIDDeviceUSB.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java b/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java index 74d7a1b0d7..4ed9207211 100644 --- a/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java +++ b/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java @@ -222,15 +222,10 @@ class HIDDeviceUSB implements HIDDevice { return false; } if (!mClaimed) { - Log.w(TAG, "readReport() called but some other process currently owns the USB device"); if (feature) { return false; } - // For non-feature reports, fake that there's no data available if we aren't claimed. - // byte[] data; - // data = Arrays.copyOfRange(report, 0, res); - // mManager.HIDDeviceReportResponse(mDeviceId, data); return true; }