Skip to content

Commit 3852557

Browse files
committed
Linter fixes and fix broken dep
1 parent 9a4c671 commit 3852557

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

analyzer/java/com/engflow/bazel/invocation/analyzer/dataproviders/remoteexecution/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ java_library(
2424
"//analyzer/java/com/engflow/bazel/invocation/analyzer/time",
2525
"//analyzer/java/com/engflow/bazel/invocation/analyzer/traceeventformat",
2626
"//third_party/guava",
27-
"//third_party/maven/com.google.code.findbugs/jsr305",
27+
"//third_party/jsr305",
2828
],
2929
)
3030

analyzer/java/com/engflow/bazel/invocation/analyzer/dataproviders/remoteexecution/CriticalPathQueuingDurationDataProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ CriticalPathQueuingDuration getCriticalPathQueuingDuration()
167167
&& cpEvent.processId == event.processId
168168
&& (cpEvent.start.compareTo(event.start) <= 0)
169169
&& (event.end.almostEquals(cpEvent.end)
170-
|| (event.end.compareTo(cpEvent.end) <= 0))))
170+
|| (event.end.compareTo(cpEvent.end) <= 0))))
171171
.map((event) -> event.duration)
172172
.reduce(Duration.ZERO, Duration::plus);
173173
return new CriticalPathQueuingDuration(duration);

0 commit comments

Comments
 (0)