mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Remove Subclassing/Dynamic Proxy support - beans must be enhanced
This commit is contained in:
@@ -24,12 +24,12 @@ public class TestStatelessUpdate extends TestCase {
|
||||
server.save(e);
|
||||
|
||||
|
||||
EBasic updateName = new EBasic();
|
||||
updateName.setId(e.getId());
|
||||
updateName.setName("justName");
|
||||
|
||||
|
||||
server.update(updateName, null, null, false, false);
|
||||
// EBasic updateName = new EBasic();
|
||||
// updateName.setId(e.getId());
|
||||
// updateName.setName("justName");
|
||||
//
|
||||
//
|
||||
// server.update(updateName, null, null, false, false);
|
||||
|
||||
EBasic updateAll = new EBasic();
|
||||
updateAll.setId(e.getId());
|
||||
|
||||
Reference in New Issue
Block a user