Skip to content
Snippets Groups Projects
Commit 7230118a authored by ttschol's avatar ttschol
Browse files

Added missing Javadoc for InterruptedException

parent ad507746
No related branches found
No related tags found
No related merge requests found
Pipeline #42742 passed
......@@ -41,6 +41,7 @@ public class FindDevicesManager {
*
* @param manager the Bluetooth manager from which we get the Bluetooth devices
* @return true if at least one device could be found
* @throws InterruptedException if sleep between attempts gets interrupted
*/
public boolean findDevices(final BluetoothManager manager) throws InterruptedException {
Preconditions.checkNotNull(manager, "Precondition violation - argument 'manager' must not be NULL!");
......
......@@ -21,6 +21,7 @@ public final class Main {
* over Bluetooth Low Energy.
*
* @param args the program arguments
* @throws InterruptedException if finding devices gets interrupted
* @see <a href="https://github.com/DI-GROUP/TimeFlip.Docs/blob/master/Hardware/BLE_device_commutication_protocol_v3.0_en.md" target="_top">BLE device communication protocol v3.0</a>
*/
public static void main(String[] args) throws InterruptedException {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment