Removed whitespacing and formatting issues

Ran mvn spring-javaformat:apply as shown from github's build failure
This commit is contained in:
Tom Ekshtein 2023-10-02 19:42:13 -07:00
parent 0d24bc4813
commit 15801e7140
2 changed files with 2 additions and 4 deletions

View file

@ -86,7 +86,6 @@ class OwnerController {
return "owners/findOwners";
}
@GetMapping("/owners")
public String processFindForm(@RequestParam(defaultValue = "1") int page, Owner owner, BindingResult result,
Model model) {

View file

@ -64,7 +64,6 @@ public interface OwnerRepository extends Repository<Owner, Integer> {
@Query("SELECT DISTINCT owner FROM Owner owner LEFT JOIN FETCH owner.pets LEFT JOIN FETCH pets.visits")
List<Owner> findAllWithPetsAndVisits();
/**
* Retrieve an {@link Owner} from the data store by id.
* @param id the id to search for