refactor: remove code smell java:S5786 (#2159)

https://sonarcloud.io/organizations/iluwatar/rules?open=java%3AS5786&rule_key=java%3AS5786
This commit is contained in:
Robert Volkmann
2022-10-30 18:21:21 +02:00
committed by GitHub
parent 5afc32cf23
commit 4cd8149502
155 changed files with 273 additions and 273 deletions
@@ -60,7 +60,7 @@ class AnnotationBasedRepositoryTest {
* Prepare data for test
*/
@BeforeEach
public void setup() {
void setup() {
repository.saveAll(persons);
}
@@ -112,7 +112,7 @@ class AnnotationBasedRepositoryTest {
}
@AfterEach
public void cleanup() {
void cleanup() {
repository.deleteAll();
}
@@ -60,7 +60,7 @@ class RepositoryTest {
* Prepare data for test
*/
@BeforeEach
public void setup() {
void setup() {
repository.saveAll(persons);
}
@@ -112,7 +112,7 @@ class RepositoryTest {
}
@AfterEach
public void cleanup() {
void cleanup() {
repository.deleteAll();
}