Skip to content

Commit

Permalink
Fix compile errors I hit when building org.libsdl in source2 (part 1 …
Browse files Browse the repository at this point in the history
…of 2)
  • Loading branch information
slouken committed Apr 23, 2019
1 parent f79190f commit 45b5453
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -411,7 +411,7 @@ private void initializeBluetooth() {

if (mIsChromebook) {
mHandler = new Handler(Looper.getMainLooper());
mLastBluetoothDevices = new ArrayList<>();
mLastBluetoothDevices = new ArrayList<BluetoothDevice>();

// final HIDDeviceManager finalThis = this;
// mHandler.postDelayed(new Runnable() {
Expand Down Expand Up @@ -439,8 +439,8 @@ public void chromebookConnectionHandler() {
return;
}

ArrayList<BluetoothDevice> disconnected = new ArrayList<>();
ArrayList<BluetoothDevice> connected = new ArrayList<>();
ArrayList<BluetoothDevice> disconnected = new ArrayList<BluetoothDevice>();
ArrayList<BluetoothDevice> connected = new ArrayList<BluetoothDevice>();

List<BluetoothDevice> currentConnected = mBluetoothManager.getConnectedDevices(BluetoothProfile.GATT);

Expand Down

0 comments on commit 45b5453

Please sign in to comment.