HHH-13201 - mark local origin variable as final
This commit is contained in:
parent
d97db034b4
commit
afd6818e55
|
@ -193,7 +193,7 @@ public class SelectClause extends SelectExpressionList {
|
||||||
FromElement fromElement = (FromElement) iterator.next();
|
FromElement fromElement = (FromElement) iterator.next();
|
||||||
|
|
||||||
if ( fromElement.isFetch() ) {
|
if ( fromElement.isFetch() ) {
|
||||||
FromElement origin;
|
final FromElement origin;
|
||||||
if ( fromElement.getRealOrigin() == null ) {
|
if ( fromElement.getRealOrigin() == null ) {
|
||||||
// work around that crazy issue where the tree contains
|
// work around that crazy issue where the tree contains
|
||||||
// "empty" FromElements (no text); afaict, this is caused
|
// "empty" FromElements (no text); afaict, this is caused
|
||||||
|
|
Loading…
Reference in New Issue