[hibernate-dev] Hibernate Rx: Remove Optional from API

Davide D'Alto daltodavide at gmail.com
Thu Apr 16 06:42:31 EDT 2020


Hi,
Gavin sent this PR: https://github.com/hibernate/hibernate-rx/pull/93

It removes Optional from the API, for example:

<T> CompletionStage<Optional<T>> fetch(T association);

becomes:

<T> CompletionStage<T> fetch(T association);

Is there anybody here with strong opinions about keeping Optional in the
API?

Thanks,
Davide


More information about the hibernate-dev mailing list