Skip to content

Commit

Permalink
Merge pull request #34 from kshoji/feature/fix-receive-midi-issue-202…
Browse files Browse the repository at this point in the history
…40522

Fix input device initialization issue
  • Loading branch information
kshoji authored May 22, 2024
2 parents ebeb85e + b82e678 commit 72758af
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,6 @@ public void onServicesDiscovered(final BluetoothGatt gatt, int status) {
public void run() {
// this calls onCharacteristicRead after completed
gatt.readCharacteristic(manufacturerCharacteristic);
if (gattRequestQueue.size() > 0) {
gattRequestQueue.remove(0).run();
}
}
});
}
Expand All @@ -155,9 +152,6 @@ public void run() {
public void run() {
// this calls onCharacteristicRead after completed
gatt.readCharacteristic(modelCharacteristic);
if (gattRequestQueue.size() > 0) {
gattRequestQueue.remove(0).run();
}
}
});
}
Expand Down

0 comments on commit 72758af

Please sign in to comment.