IDEMPIERE-5442 : Fix typos in code - varialbe -> variable (#1517)
https://idempiere.atlassian.net/browse/IDEMPIERE-5442
This commit is contained in:
parent
476e9ab71c
commit
780a16f153
|
@ -427,7 +427,7 @@ public class AbstractService {
|
|||
int ind = sqlBuilder.lastIndexOf("=");
|
||||
sqlBuilder.replace(ind, sqlBuilder.length(), " Is Null ");
|
||||
}else if (val == null)
|
||||
throw new AdempiereException("Can not resolve varialbe '" + token + "' in sql");
|
||||
throw new AdempiereException("Can not resolve variable '" + token + "' in sql");
|
||||
else{
|
||||
sqlBuilder.append(" ? ");
|
||||
sqlParas.add(val);
|
||||
|
|
Loading…
Reference in New Issue