Skip to content

Commit

Permalink
Fix an Eclipse warning
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@953441 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markt-asf committed Jun 10, 2010
1 parent e730b35 commit da7e614
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/org/apache/el/parser/AstValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ public Object getValue(EvaluationContext ctx) throws ELException {
// This is a property
if (suffix == null) {
return null;
} else {
ctx.setPropertyResolved(false);
base = resolver.getValue(ctx, base, suffix);
}

ctx.setPropertyResolved(false);
base = resolver.getValue(ctx, base, suffix);
i++;
}
}
Expand Down

0 comments on commit da7e614

Please sign in to comment.