diff options
Diffstat (limited to 'java/BluetoothAdapter.java')
-rw-r--r-- | java/BluetoothAdapter.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/BluetoothAdapter.java b/java/BluetoothAdapter.java index 6aa73316..5b96c5bd 100644 --- a/java/BluetoothAdapter.java +++ b/java/BluetoothAdapter.java @@ -33,8 +33,6 @@ import java.time.Duration; */ public class BluetoothAdapter extends BluetoothObject { - private long nativeInstance; - public native BluetoothType getBluetoothType(); public native BluetoothAdapter clone(); @@ -182,11 +180,5 @@ public class BluetoothAdapter extends BluetoothObject private BluetoothAdapter(long instance) { super(instance); - nativeInstance = instance; - } - - protected void finalize() - { - delete(); } } |