Merge branch 'main' into main

This commit is contained in:
Patrick Baumgartner 2023-03-06 14:36:06 +01:00 committed by GitHub
commit a780dbdbe8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -18,7 +18,7 @@ jobs:
java: [ '17' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v2
with:

View file

@ -80,8 +80,7 @@ class OwnerController {
}
@GetMapping("/owners/find")
public String initFindForm(Map<String, Object> model) {
model.put("owner", new Owner());
public String initFindForm() {
return "owners/findOwners";
}