mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
13 lines
254 B
Java
13 lines
254 B
Java
package net.sf.briar.plugins.bluetooth;
|
|
|
|
import java.util.UUID;
|
|
|
|
class BluetoothTest {
|
|
|
|
private static final String EMPTY_UUID =
|
|
UUID.nameUUIDFromBytes(new byte[0]).toString().replaceAll("-", "");
|
|
|
|
static String getUuid() {
|
|
return EMPTY_UUID;
|
|
}
|
|
} |