Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
briar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
680
Issues
680
List
Boards
Labels
Service Desk
Milestones
Merge Requests
11
Merge Requests
11
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
briar
briar
Commits
5553b7d0
Verified
Commit
5553b7d0
authored
May 01, 2019
by
akwizgran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused method.
parent
2cce0f5f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
bramble-api/src/main/java/org/briarproject/bramble/api/identity/IdentityManager.java
...rg/briarproject/bramble/api/identity/IdentityManager.java
+0
-6
bramble-core/src/main/java/org/briarproject/bramble/identity/IdentityManagerImpl.java
...rg/briarproject/bramble/identity/IdentityManagerImpl.java
+0
-8
No files found.
bramble-api/src/main/java/org/briarproject/bramble/api/identity/IdentityManager.java
View file @
5553b7d0
...
...
@@ -10,12 +10,6 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
@NotNullByDefault
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
* key pair.
...
...
bramble-core/src/main/java/org/briarproject/bramble/identity/IdentityManagerImpl.java
View file @
5553b7d0
...
...
@@ -68,14 +68,6 @@ class IdentityManagerImpl implements IdentityManager, OpenDatabaseHook {
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
public
Account
createAccount
(
String
name
)
{
long
start
=
now
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment