mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-21 07:09:56 +01:00
Remove unused method.
This commit is contained in:
@@ -10,12 +10,6 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public interface IdentityManager {
|
public interface IdentityManager {
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a local identity with the given name.
|
|
||||||
*/
|
|
||||||
@CryptoExecutor
|
|
||||||
LocalAuthor createLocalAuthor(String name);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an account with the given name. The account includes a handshake
|
* Creates an account with the given name. The account includes a handshake
|
||||||
* key pair.
|
* key pair.
|
||||||
|
|||||||
@@ -68,14 +68,6 @@ class IdentityManagerImpl implements IdentityManager, OpenDatabaseHook {
|
|||||||
this.clock = clock;
|
this.clock = clock;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public LocalAuthor createLocalAuthor(String name) {
|
|
||||||
long start = now();
|
|
||||||
LocalAuthor localAuthor = authorFactory.createLocalAuthor(name);
|
|
||||||
logDuration(LOG, "Creating local author", start);
|
|
||||||
return localAuthor;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Account createAccount(String name) {
|
public Account createAccount(String name) {
|
||||||
long start = now();
|
long start = now();
|
||||||
|
|||||||
Reference in New Issue
Block a user