diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6f89c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target/ \ No newline at end of file diff --git a/src/main/java/fr/plil/sio/examen/repositories/AnimalRepository.java b/src/main/java/fr/plil/sio/examen/repositories/AnimalRepository.java index 1159558..8b7dd42 100644 --- a/src/main/java/fr/plil/sio/examen/repositories/AnimalRepository.java +++ b/src/main/java/fr/plil/sio/examen/repositories/AnimalRepository.java @@ -9,7 +9,8 @@ public interface AnimalRepository extends JpaRepository { /** * NOTE: this is an important example to help you with the findByXXX methods - * in the comment repository. + * in the comment repository (hint: findByName works with a String, what + * about other kind of object ?). */ List findByOwner(Owner owner); } -- libgit2 0.21.2