diff options
author | Sven Gothel <[email protected]> | 2021-10-10 04:44:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-10-10 04:44:45 +0200 |
commit | b8a7f626fadcf6b21e5df67cdf0df4369885a6b8 (patch) | |
tree | eb2a05fabe63e8b8ccb61bcdb019459a69eaa251 /java/jau/direct_bt/DBTObject.java | |
parent | 5295208f805a3389a6a3d91b5cd27404fe3fa01c (diff) |
Removed TinyB API artifacts, fix copyright notice. Add README.md 'Direct-BT Origins'
Removed remaining TinyB API artifacts:
- BTType.java and related search functions (class_type())
- Java's clone()
- BTManager's device/gatt functionality, only covers adapter.
+++
Direct-BT originated from TinyB.
Major TinyB autors were:
- Andrei Vasiliu <[email protected]>
- Petre Eftime <[email protected]>
TinyB Copyright (c) 2016 Intel Corporation.
With the removal of TinyB from Direct-BT
we removed all substantial parts (if not all, i.e. > 99.9%)
of its copyright holder.
This change removes remaining source file Intel (c) notices.
This change does not disregard the author's original work,
on the contrary, we keep attribution about Direct-BT's history
in the README.md file 'Direct-BT Origins' section.
The Intel (c) notice and TinyB authors stay in the COPYING file.
We are grateful for their excellent work.
This change is to clarify authorship and copyright of Direct-BT's work,
as well as to not mislead association with the work of TinyB.
Diffstat (limited to 'java/jau/direct_bt/DBTObject.java')
-rw-r--r-- | java/jau/direct_bt/DBTObject.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/jau/direct_bt/DBTObject.java b/java/jau/direct_bt/DBTObject.java index 80266d84..d5de04a8 100644 --- a/java/jau/direct_bt/DBTObject.java +++ b/java/jau/direct_bt/DBTObject.java @@ -26,7 +26,6 @@ package jau.direct_bt; import org.direct_bt.BTObject; -import org.direct_bt.BTType; public abstract class DBTObject extends DBTNativeDownlink implements BTObject { @@ -49,8 +48,6 @@ public abstract class DBTObject extends DBTNativeDownlink implements BTObject this.hashValue = hashValue; } - static BTType class_type() { return BTType.NONE; } - @Override public abstract boolean equals(final Object obj); @@ -69,9 +66,4 @@ public abstract class DBTObject extends DBTNativeDownlink implements BTObject public synchronized void close() { delete(); } - - @Override - public BTObject clone() - { throw new UnsupportedOperationException(); } // FIXME - } |