From 19d46d2fed022d16a5d2de707984d9141010ab16 Mon Sep 17 00:00:00 2001 From: Alexander Iskuskov Date: Tue, 26 Jan 2021 15:12:19 +0300 Subject: [PATCH] HHH-14421 Fix javadoc for Query.stream() method --- hibernate-core/src/main/java/org/hibernate/query/Query.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/main/java/org/hibernate/query/Query.java b/hibernate-core/src/main/java/org/hibernate/query/Query.java index 20066bf584..c56e1ea1a0 100644 --- a/hibernate-core/src/main/java/org/hibernate/query/Query.java +++ b/hibernate-core/src/main/java/org/hibernate/query/Query.java @@ -79,8 +79,8 @@ public interface Query extends TypedQuery, org.hibernate.Query, CommonQ /** * Retrieve a Stream over the query results. *

- * 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. + * In the initial implementation (5.2) this returns a simple sequential Stream. The plan + * is to return a smarter stream in 6.x leveraging the SQM model. * *

*