Skip to content

Commit f433905

Browse files
authored
Update ListenableFutureUtil.java
1 parent 3d2d6f7 commit f433905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subprojects/parseq-guava-interop/src/main/java/com/linkedin/parseq/guava/ListenableFutureUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public boolean cancel(Exception rootReason) {
4747
if (shouldCancelTask && !future.isCancelled()) {
4848
boolean futureCancelResult = future.cancel(true);
4949
if (!futureCancelResult) {
50-
LOGGER.warn("Unexpected: ListenableFuture was not cancelled but new attempt to cancel also failed.");
50+
LOGGER.warn("Unexpected: Listenable future was not cancelled but new attempt to cancel also failed.");
5151
}
5252
}
5353
return shouldCancelTask;

0 commit comments

Comments
 (0)