[jOOQ/jOOQ#10774] Remove @Nullable annotation from

ResultQuery.fetchSingleInto(Class) and Record.into(Class)
This commit is contained in:
Lukas Eder 2020-10-22 09:48:57 +02:00
parent 61f39b90c7
commit b64d438ab6
2 changed files with 2 additions and 2 deletions

View File

@ -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;
/**

View File

@ -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;
/**