[jOOQ/jOOQ#10774] Remove @Nullable annotation from
ResultQuery.fetchSingleInto(Class) and Record.into(Class)
This commit is contained in:
parent
61f39b90c7
commit
b64d438ab6
@ -1018,7 +1018,7 @@ public interface Record extends Attachable, Comparable<Record>, Formattable {
|
||||
* @see #from(Object)
|
||||
* @see DefaultRecordMapper
|
||||
*/
|
||||
@Nullable
|
||||
// [#10774] This is @Nullable in rare cases, which can be annoying for Kotlin users in most cases
|
||||
<E> E into(Class<? extends E> type) throws MappingException;
|
||||
|
||||
/**
|
||||
|
||||
@ -1244,7 +1244,7 @@ extends
|
||||
* @throws TooManyRowsException if the query returned more than one record
|
||||
* @see DefaultRecordMapper
|
||||
*/
|
||||
@Nullable
|
||||
// [#10774] This is @Nullable in rare cases, which can be annoying for Kotlin users in most cases
|
||||
<E> E fetchSingleInto(Class<? extends E> type) throws DataAccessException, MappingException, NoDataFoundException, TooManyRowsException;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user