mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Refactor DatabasePlatform - rename getters to accessors
Although this is public API these getters are not expected to be used by application code so, I feel comfortable making this change.
This commit is contained in:
@@ -136,7 +136,7 @@ public class TestEncrypt extends BaseTestCase {
|
||||
assertEquals(EBasicEncrypt.Status.ONE, e2.getStatus());
|
||||
|
||||
SpiEbeanServer server = (SpiEbeanServer) DB.getDefault();
|
||||
DbEncrypt dbEncrypt = server.databasePlatform().getDbEncrypt();
|
||||
DbEncrypt dbEncrypt = server.databasePlatform().dbEncrypt();
|
||||
|
||||
if (dbEncrypt == null) {
|
||||
// can not test the where clause
|
||||
|
||||
Reference in New Issue
Block a user