Skip to content

Commit

Permalink
Removes duplicate reported answers
Browse files Browse the repository at this point in the history
  • Loading branch information
pbonte committed Dec 10, 2021
1 parent 5910b9b commit 7d0efb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void update(Observable o, Object arg) {
if (task.getAggregations().isEmpty()) {
Stream<R> r2rResult = eval(now);
Stream<O> output = r2s.getR2sOperator().eval(r2rResult, now);
output.forEach(out->{System.out.println(out);outputStream.put(out,now);});
output.forEach(out->{outputStream.put(out,now);});
} else {
handleAggregations(task, r2s, now);
}
Expand Down

0 comments on commit 7d0efb1

Please sign in to comment.