Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@113535 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-03-10 09:22:38 +00:00
parent 44f6864f49
commit ddfd29683c
1 changed files with 2 additions and 2 deletions

View File

@ -629,8 +629,8 @@ public class C_ExpressionParser {
throws ExpressionParserException {
C_Lower e = (C_Lower) exp;
Expression arg = parse(e.getArgument());
Lower upper = new Lower(arg);
return upper;
Lower lower = new Lower(arg);
return lower;
}
protected Expression getTrim(C_Expression exp)