Add ignores for VSCode

This commit is contained in:
Dave Syer
2020-05-19 11:09:48 +01:00
parent 7b8dae8e93
commit 471b6e6f30
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View File

@@ -13,3 +13,4 @@ target
.idea
credentials.yml
.DS_Store
.vscode

View File

@@ -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 {