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:
Rob Bygrave
2023-06-01 20:48:13 +12:00
parent 430926c5a9
commit bac7cd1ee7
@@ -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.
*/