Skip to content

Commit

Permalink
AbsoluteIncrementAdapter: removed unnecessary 'synchronized' (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
climategadgets committed Nov 8, 2023
1 parent bfdc029 commit 559addb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public final Flux<T> split(Flux<T> snapshots) {
return snapshots.flatMap(this::convert);
}

private synchronized Flux<T> convert(T snapshot) {
private Flux<T> convert(T snapshot) {

if (lastKnown == null) {

Expand Down

0 comments on commit 559addb

Please sign in to comment.