[BAEL-3841] fix formatting

This commit is contained in:
Adrian Maghear 2020-06-04 22:50:07 +02:00
parent a7f1ca3500
commit e5265b9d23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import java.util.UUID;
public interface BookRepository extends CrudRepository<Book, UUID> {
@Cacheable(value = "books", unless="#a0=='Foundation'")
@Cacheable(value = "books", unless = "#a0=='Foundation'")
Optional<Book> findFirstByTitle(String title);
}