diff --git a/.gitignore b/.gitignore index ca17b70..28a73be 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ target .idea credentials.yml .DS_Store +.vscode diff --git a/src/test/java/org/springframework/retry/annotation/EnableRetryTests.java b/src/test/java/org/springframework/retry/annotation/EnableRetryTests.java index da0da2f..70b808d 100644 --- a/src/test/java/org/springframework/retry/annotation/EnableRetryTests.java +++ b/src/test/java/org/springframework/retry/annotation/EnableRetryTests.java @@ -651,8 +651,11 @@ public class EnableRetryTests { } public static interface NoRecoverInterface { + void service(); + boolean isRecovered(); + } public static class NoRecoverClass implements NoRecoverInterface { @@ -674,6 +677,7 @@ public class EnableRetryTests { public boolean isRecovered() { return this.recovered; } + } public static interface NotAnnotatedInterface {