mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2713 - Improve javadoc of Finder, BeanFinder, BeanRepository - deprecate use of BeanFinder server field (migrate to database)
This commit is contained in:
@@ -6,8 +6,6 @@ import org.tests.model.basic.Customer;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
//import javax.inject.Inject;
|
||||
|
||||
public class CustomerRepository extends BeanRepository<Integer, Customer> {
|
||||
|
||||
//@Inject
|
||||
@@ -28,7 +26,6 @@ public class CustomerRepository extends BeanRepository<Integer, Customer> {
|
||||
}
|
||||
|
||||
public int updateNotes(String blah, String whot) {
|
||||
|
||||
return updateQuery()
|
||||
.set("smallnote", whot)
|
||||
.where().eq("name", blah)
|
||||
|
||||
Reference in New Issue
Block a user