#2320 - Tidy only changes

This commit is contained in:
rbygrave
2021-08-18 09:05:18 +12:00
parent 7edfe3607d
commit 965f4c6227
3 changed files with 9 additions and 20 deletions
@@ -68,15 +68,12 @@ public class IntegrationTest {
System.out.println("done");
}
private List<Person> insertSomePeople() {
private void insertSomePeople() {
List<Person> people = new ArrayList<>();
for (String name : new String[]{"Jack", "John", "Rob", "Moby", "Fiona"}) {
people.add(new Person(name));
}
DB.saveAll(people);
return people;
}
private Person findByName(String name) {