mirror of https://github.com/encounter/SDL.git
Fix compile errors I hit when building org.libsdl in source2 (part 1 of 2)
This commit is contained in:
parent
f79190f407
commit
45b5453b16
|
@ -411,7 +411,7 @@ public class HIDDeviceManager {
|
||||||
|
|
||||||
if (mIsChromebook) {
|
if (mIsChromebook) {
|
||||||
mHandler = new Handler(Looper.getMainLooper());
|
mHandler = new Handler(Looper.getMainLooper());
|
||||||
mLastBluetoothDevices = new ArrayList<>();
|
mLastBluetoothDevices = new ArrayList<BluetoothDevice>();
|
||||||
|
|
||||||
// final HIDDeviceManager finalThis = this;
|
// final HIDDeviceManager finalThis = this;
|
||||||
// mHandler.postDelayed(new Runnable() {
|
// mHandler.postDelayed(new Runnable() {
|
||||||
|
@ -439,8 +439,8 @@ public class HIDDeviceManager {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ArrayList<BluetoothDevice> disconnected = new ArrayList<>();
|
ArrayList<BluetoothDevice> disconnected = new ArrayList<BluetoothDevice>();
|
||||||
ArrayList<BluetoothDevice> connected = new ArrayList<>();
|
ArrayList<BluetoothDevice> connected = new ArrayList<BluetoothDevice>();
|
||||||
|
|
||||||
List<BluetoothDevice> currentConnected = mBluetoothManager.getConnectedDevices(BluetoothProfile.GATT);
|
List<BluetoothDevice> currentConnected = mBluetoothManager.getConnectedDevices(BluetoothProfile.GATT);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue