From 471b6e6f30efbd9d3db33df6232d1998c7796989 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 19 May 2020 11:09:48 +0100 Subject: [PATCH] Add ignores for VSCode --- .gitignore | 1 + .../springframework/retry/annotation/EnableRetryTests.java | 4 ++++ 2 files changed, 5 insertions(+) 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 {