mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Deprecate the mutating methods of FetchConfig to migrate to the static factory methods (#2164)
e.g. migrate from -> to use new FetchConfig().query() -> FetchConfig.ofQuery() new FetchConfig().query(50) -> FetchConfig.ofQuery(50)
This commit is contained in:
@@ -26,7 +26,7 @@ public class OrmQueryProperties implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -8785582703966455658L;
|
||||
|
||||
static final FetchConfig DEFAULT_FETCH = new FetchConfig();
|
||||
static final FetchConfig DEFAULT_FETCH = FetchConfig.ofDefault();
|
||||
|
||||
private final String parentPath;
|
||||
private final String path;
|
||||
|
||||
Reference in New Issue
Block a user