Explicitly mark as public
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2023-07-24 13:59:08 +02:00
parent 8586273904
commit d1a5e97da6
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 2 additions and 2 deletions

View File

@ -53,11 +53,11 @@ public class AsyncRequest {
} }
@SamWithReceiver @SamWithReceiver
interface Action { public interface Action {
Future<Void> schedule(Context context, Runnable callback); Future<Void> schedule(Context context, Runnable callback);
} }
interface Context { public interface Context {
boolean isCancelled(); boolean isCancelled();
} }
} }