From 831e486b7cc616121c9705a5955417dc9a77872c Mon Sep 17 00:00:00 2001 From: Bryce Tompkins <167870666+bryceatmoderne@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:47:07 -0400 Subject: [PATCH 1/2] Update rewrite-core/src/main/java/org/openrewrite/InMemoryExecutionContext.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../main/java/org/openrewrite/InMemoryExecutionContext.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rewrite-core/src/main/java/org/openrewrite/InMemoryExecutionContext.java b/rewrite-core/src/main/java/org/openrewrite/InMemoryExecutionContext.java index ba3614c3c15..f1b586541e4 100644 --- a/rewrite-core/src/main/java/org/openrewrite/InMemoryExecutionContext.java +++ b/rewrite-core/src/main/java/org/openrewrite/InMemoryExecutionContext.java @@ -95,8 +95,7 @@ public BiConsumer getOnTimeout() { } @Override - @Nullable - public BiConsumer getOnDownload() { + public @Nullable BiConsumer getOnDownload() { return onDownload; } } From efc2480c740e388def0966d87962eaa54abcfe9f Mon Sep 17 00:00:00 2001 From: Bryce Tompkins <167870666+bryceatmoderne@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:47:43 -0400 Subject: [PATCH 2/2] Update rewrite-core/src/main/java/org/openrewrite/scheduling/WatchableExecutionContext.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../org/openrewrite/scheduling/WatchableExecutionContext.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rewrite-core/src/main/java/org/openrewrite/scheduling/WatchableExecutionContext.java b/rewrite-core/src/main/java/org/openrewrite/scheduling/WatchableExecutionContext.java index 45fef9a37f1..4bcb8482f81 100644 --- a/rewrite-core/src/main/java/org/openrewrite/scheduling/WatchableExecutionContext.java +++ b/rewrite-core/src/main/java/org/openrewrite/scheduling/WatchableExecutionContext.java @@ -68,8 +68,7 @@ public BiConsumer getOnTimeout() { } @Override - @Nullable - public BiConsumer getOnDownload() { + public @Nullable BiConsumer getOnDownload() { return delegate.getOnDownload(); } }