summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-09-25 09:51:43 +0200
committerSven Gothel <[email protected]>2020-09-25 09:51:43 +0200
commit311a125c8987b3399068f4dddfeed056b2360781 (patch)
treeb40d7de18ccc06fe39ebb4a4ba0dbc78746d1df9
parentbdf0a8abaaa6e83e9571d92ec5c4cad322dcd97f (diff)
BluetoothFactory: Use new BluetoothManager get-method name (oops)v2.1.29
-rw-r--r--java/org/tinyb/BluetoothFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/org/tinyb/BluetoothFactory.java b/java/org/tinyb/BluetoothFactory.java
index f47d44e0..9dc5e3f9 100644
--- a/java/org/tinyb/BluetoothFactory.java
+++ b/java/org/tinyb/BluetoothFactory.java
@@ -308,7 +308,7 @@ public class BluetoothFactory {
throws BluetoothException, NoSuchMethodException, SecurityException,
IllegalAccessException, IllegalArgumentException, InvocationTargetException
{
- final Method m = factoryImplClass.getMethod("getBluetoothManager");
+ final Method m = factoryImplClass.getMethod("getManager");
return (BluetoothManager)m.invoke(null);
}