Skip to content

Commit 1a748c2

Browse files
committed
compilation error
1 parent 8603252 commit 1a748c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

microprofile/tests/telemetry/src/test/java/io/helidon/microprofile/telemetry/InMemorySpanExporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class InMemorySpanExporter implements SpanExporter {
4343
*/
4444
public List<SpanData> getFinishedSpanItems(int spanCount) {
4545
assertSpanCount(spanCount);
46-
return finishedSpanItems.stream().sorted(comparingLong(SpanData::getEndEpochNanos)
46+
return finishedSpanItems.stream().sorted(comparingLong(SpanData::getEndEpochNanos))
4747
.collect(Collectors.toList());
4848
}
4949

0 commit comments

Comments
 (0)