diff options
Diffstat (limited to 'java/org/direct_bt/BTObject.java')
-rw-r--r-- | java/org/direct_bt/BTObject.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/java/org/direct_bt/BTObject.java b/java/org/direct_bt/BTObject.java index 05821e48..2c44ad4a 100644 --- a/java/org/direct_bt/BTObject.java +++ b/java/org/direct_bt/BTObject.java @@ -27,18 +27,13 @@ */ package org.direct_bt; -public interface BTObject extends Cloneable, AutoCloseable +public interface BTObject extends AutoCloseable { /** Returns the BluetoothType of this object * @return The BluetoothType of this object */ public BTType getBluetoothType(); - /** Returns a clone of the BluetoothObject - * @return A clone of the BluetoothObject - */ - public BTObject clone(); - @Override public boolean equals(Object obj); |