HHH-14421 Fix javadoc for Query.stream() method

This commit is contained in:
Alexander Iskuskov 2021-01-26 15:12:19 +03:00 committed by Sanne Grinovero
parent 5881b88173
commit 19d46d2fed
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ public interface Query<R> extends TypedQuery<R>, org.hibernate.Query<R>, CommonQ
* Retrieve a Stream over the query results. * Retrieve a Stream over the query results.
* <p/> * <p/>
* In the initial implementation (5.2) this returns a simple sequential Stream. The plan * In the initial implementation (5.2) this returns a simple sequential Stream. The plan
* is to return a a smarter stream in 6.x leveraging the SQM model. * is to return a smarter stream in 6.x leveraging the SQM model.
* *
* <p> * <p>
* *