No effective change - Fix javadoc issues in Finder

This commit is contained in:
Rob Bygrave
2017-01-12 18:53:34 +13:00
parent d056151852
commit a4b49dfa27
+2 -2
View File
@@ -18,7 +18,7 @@ import java.util.List;
* </p>
* <pre>{@code
*
* public class CustomerFinder extends Finder<Customer> {
* public class CustomerFinder extends Finder<Long,Customer> {
*
* public CustomerFinder() {
* super(Customer.class);
@@ -31,7 +31,7 @@ import java.util.List;
* }
*
* public List<Customer> findNew() {
* return query()
* return query().where()
* .eq("status", Customer.Status.NEW)
* .orderBy("name")
* .findList()