Skip to content

Commit afd6818

Browse files
Mobe91beikov
authored andcommitted
HHH-13201 - mark local origin variable as final
1 parent d97db03 commit afd6818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/SelectClause.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public void initializeExplicitSelectClause(FromClause fromClause) throws Semanti
193193
FromElement fromElement = (FromElement) iterator.next();
194194

195195
if ( fromElement.isFetch() ) {
196-
FromElement origin;
196+
final FromElement origin;
197197
if ( fromElement.getRealOrigin() == null ) {
198198
// work around that crazy issue where the tree contains
199199
// "empty" FromElements (no text); afaict, this is caused

0 commit comments

Comments
 (0)