[hibernate-dev] Revert API change in org.hibernate.Query

Steve Ebersole steve at hibernate.org
Tue Jun 7 08:41:34 EDT 2016


If you send a PR I will include it.

On Sun, Jun 5, 2016 at 11:00 AM Sanne Grinovero <sanne at hibernate.org> wrote:

> I just noticed that the org.hibernate.Query interface was deprecated
> in 5.2, with the suggestion to use org.hibernate.query.Query now.
> That's ok, but it seems the "deprecation process" also forced some API
> changes already on the deprecated interface which seem might have been
> unintentional.
>
> The builder methods on org.hibernate.Query used to allow returning
> "this" to chain methods,
> although this seems no longer possible as the API now declares the
> return type should be the new one, org.hibernate.query.Query.
>
> Could we fix this by relaxing the return to the older deprecated method?
>
> in practice:
>
>  org.hibernate.query.Query<R> setFirstResult(int startPosition);
>
> should be:
>
>  org.hibernate.Query<R> setFirstResult(int startPosition);
>
> Thanks,
> Sanne
> _______________________________________________
> hibernate-dev mailing list
> hibernate-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>


More information about the hibernate-dev mailing list