Skip to content

Commit

Permalink
fbandroid/libraries/fresco/imagepipeline-base-test/src/main/java/com/…
Browse files Browse the repository at this point in the history
…facebook/imagepipeline/testing/TestExecutorService.java

Reviewed By: jocelynluizzi13

Differential Revision: D67272393

fbshipit-source-id: 954f0c280a1e830d0e11b693e320c737b54183cb
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Dec 16, 2024
1 parent 6833fbd commit da6469c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import java.util.concurrent.Callable;
import java.util.concurrent.RunnableFuture;
import java.util.concurrent.TimeUnit;
import javax.annotation.Nullable;

/** Implementation of {@link java.util.concurrent.ExecutorService} for unit tests. */
@Nullsafe(Nullsafe.Mode.LOCAL)
Expand Down Expand Up @@ -43,9 +44,10 @@ public ScheduledQueue getScheduledQueue() {
@Override
public void shutdown() {}

@Nullable
@Override
// NULLSAFE_FIXME[Inconsistent Subclass Return Annotation]
public List<Runnable> shutdownNow() {
// NULLSAFE_FIXME[Return Not Nullable]
return null;
}

Expand Down

0 comments on commit da6469c

Please sign in to comment.