#2419 - Add explicit @Nullable on findOne() methods

This commit is contained in:
Rob Bygrave
2021-10-19 12:12:11 +13:00
parent 5a4924b6cb
commit 709eb369c9
2 changed files with 2 additions and 0 deletions
@@ -1236,6 +1236,7 @@ public interface Database {
* @param id the bean id value
* @param transaction the transaction to use (can be null)
*/
@Nullable
<T> T find(Class<T> beanType, Object id, Transaction transaction);
/**