Skip to content

Commit

Permalink
removed todos and created issue see Consensys#1425
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <[email protected]>
  • Loading branch information
macfarla committed Apr 4, 2022
1 parent d440663 commit a5044d3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion argon2/src/main/java/com/quorum/tessera/argon2/Argon2.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public interface Argon2 {
*/
ArgonResult hash(char[] password, byte[] salt);

// TODO: move into factory and return the stream itself
static Argon2 create() {
return ServiceLoader.load(Argon2.class).findFirst().get();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ public interface EnvironmentVariableProviderFactory {
EnvironmentVariableProvider create();

static EnvironmentVariableProviderFactory load() {
// TODO: return the stream and let the caller deal with it
return ServiceLoader.load(EnvironmentVariableProviderFactory.class).findFirst().get();
}
}

0 comments on commit a5044d3

Please sign in to comment.