Cleanup Java Classes

Signed-off-by: Patrick Baumgartner <contact@patbaumgartner.com>
This commit is contained in:
Patrick Baumgartner 2025-06-04 21:59:34 +02:00 committed by Dave Syer
parent 142321aa3e
commit 47dfd4f388
4 changed files with 7 additions and 9 deletions

View file

@ -24,7 +24,6 @@ import org.springframework.context.annotation.ImportRuntimeHints;
* PetClinic Spring Boot Application.
*
* @author Dave Syer
*
*/
@SpringBootApplication
@ImportRuntimeHints(PetClinicRuntimeHints.class)

View file

@ -40,4 +40,4 @@ public interface PetTypeRepository extends JpaRepository<PetType, Integer> {
@Query("SELECT ptype FROM PetType ptype ORDER BY ptype.name")
List<PetType> findPetTypes();
}
}