add missing curly bracket

This commit is contained in:
Martin Junker 2018-04-24 09:41:47 +02:00 committed by Alec Grieser
parent fc1adfb138
commit c20be65c02
No known key found for this signature in database
GPG Key ID: CAF63551C60D3462

View File

@ -87,7 +87,7 @@ The following is a simple implementation of the basic pattern:
}
// Remove from the top of the queue.
tcx.run((Transaction tr) ->
tcx.run((Transaction tr) -> {
tr.clear(item.getKey());
return null;
});