OPENJPA-1851: change to more appropriate variable name

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1028466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2010-10-28 20:43:35 +00:00
parent 8ceee2b1a4
commit 81e1f23a13
3 changed files with 3 additions and 3 deletions

View File

@ -216,7 +216,7 @@ public class PreparedQueryImpl implements PreparedQuery {
_exps = ((StoreQuery.Executor)executor).getQueryExpressions();
for (int i = 0; i < _exps.length; i++) {
QueryExpressions exp = _exps[i];
if (exp.hasInExpression)
if (exp.hasParameterizedInExpression)
return new Object[]{null, _loc.get("exclude-in-expression", _id)};
if (isUsingExternalizedParameter(exp)) {
return new Object[]{null, _loc.get("exclude-externalized-param", _id)};

View File

@ -78,7 +78,7 @@ public class QueryExpressions
private Stack<Context> _contexts = null;
public Object state;
public ResultShape<?> shape;
public boolean hasInExpression;
public boolean hasParameterizedInExpression;
/**
* Set reference to the JPQL query contexts.

View File

@ -310,7 +310,7 @@ public class JPQLExpressionBuilder
exps.parameterTypes = parameterTypes;
exps.accessPath = getAccessPath();
exps.hasInExpression = this.hasParameterizedInExpression;
exps.hasParameterizedInExpression = this.hasParameterizedInExpression;
return exps;
}