Skip to content

Commit

Permalink
Remove a rejected TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
Gene Gleyzer committed Apr 11, 2022
1 parent e9278df commit d70ffbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ const ConcurrentHasherMap<Key extends immutable Object, Value extends Shareable>
if (FutureVar pending := pendingByKey.get(key))
{
// there are pending operations, add our action to the end of the list
// TODO: GG it would be nice to have a callback when an @Concurrent frame yields
// TODO GG: it would be nice to have a callback when an @Concurrent frame yields;
// this would allow me to only do the extra bookkeeping when we actually yield
pendingByKey.put(key, rVar);
pending.whenComplete((_, _) ->
Expand Down
3 changes: 1 addition & 2 deletions lib_crypto/src/main/x/crypto/Algorithms.x
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const Algorithms
*/
conditional Signer hasherFor(Specifier specifier)
{
// TODO:GG: if (Algorithm algorithm := findAlgorithm(specifier, Signing, Key=Null, False))
if (Algorithm algorithm := findAlgorithm(specifier, Signing, Null, False))
{
return True, algorithm.allocate(key=Null).as(Signer);
Expand Down Expand Up @@ -166,4 +165,4 @@ const Algorithms

return False;
}
}
}

0 comments on commit d70ffbc

Please sign in to comment.