mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Remove deprecated Query Bean fetchAll() - migrate to fetch()
```java
/**
* Deprecated in favor of fetch().
*/
@Deprecated
public final R fetchAll() {
return fetch();
}
```
This commit is contained in:
@@ -100,14 +100,6 @@ public abstract class TQAssocBean<T, R, QB> extends TQAssoc<T, R> {
|
||||
return _root;
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated in favor of fetch().
|
||||
*/
|
||||
@Deprecated
|
||||
public final R fetchAll() {
|
||||
return fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* Eagerly fetch this association loading the specified properties.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user