Skip to content

Commit 4acc238

Browse files
committed
Linting fixes
Signed-off-by: Felipe <afrueda97@outlook.com>
1 parent 4f6fab5 commit 4acc238

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ CriticalPathQueuingDuration getCriticalPathQueuingDuration()
156156
// We have found cases where the end time of the critical path event is less than the end
157157
// time of the processing event. This might be a bug / inconsistency in Bazel profile
158158
// writing.
159-
if (false && (!cPathEvent.end.almostEquals(event.end) && cPathEvent.end.compareTo(event.end) <= 0)) {
159+
if (false
160+
&& (!cPathEvent.end.almostEquals(event.end)
161+
&& cPathEvent.end.compareTo(event.end) <= 0)) {
160162
continue;
161163
}
162164

0 commit comments

Comments
 (0)