#2422 - Remove extraneous jsr 305 @Nonnull

This commit is contained in:
Rob Bygrave
2021-10-19 17:33:23 +13:00
parent 709eb369c9
commit c7bb027c7d
16 changed files with 0 additions and 104 deletions
@@ -1,6 +1,5 @@
package io.ebean;
import javax.annotation.Nonnull;
import java.util.List;
import java.util.concurrent.Future;
@@ -116,13 +115,11 @@ public interface PagedList<T> {
*
* }</pre>
*/
@Nonnull
Future<Integer> getFutureCount();
/**
* Return the list of entities for this page.
*/
@Nonnull
List<T> getList();
/**