IDEMPIERE-5442 : Fix typos in code - varialbe -> variable (#1517)

https://idempiere.atlassian.net/browse/IDEMPIERE-5442
This commit is contained in:
Nicolas Micoud 2022-10-06 05:46:32 +02:00 committed by GitHub
parent 476e9ab71c
commit 780a16f153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ public class AbstractService {
int ind = sqlBuilder.lastIndexOf("="); int ind = sqlBuilder.lastIndexOf("=");
sqlBuilder.replace(ind, sqlBuilder.length(), " Is Null "); sqlBuilder.replace(ind, sqlBuilder.length(), " Is Null ");
}else if (val == 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{ else{
sqlBuilder.append(" ? "); sqlBuilder.append(" ? ");
sqlParas.add(val); sqlParas.add(val);