No effective change - Code cleanup, convert unnecessary fields to local vars

This commit is contained in:
Robin Bygrave
2015-07-31 13:00:53 +12:00
parent b9aa76c367
commit 8a3d9edd34
12 changed files with 14 additions and 50 deletions
@@ -115,11 +115,6 @@ public class CQueryPredicates {
*/
private String dbFilterMany;
/**
* The order by clause.
*/
private String logicalOrderBy;
private String dbOrderBy;
/**
@@ -336,7 +331,7 @@ public class CQueryPredicates {
private void parsePropertiesToDbColumns(DeployParser deployParser) {
// order by is dependent on the manyProperty (if there is one)
logicalOrderBy = deriveOrderByWithMany(request.getManyProperty());
String logicalOrderBy = deriveOrderByWithMany(request.getManyProperty());
if (logicalOrderBy != null) {
dbOrderBy = deployParser.parse(logicalOrderBy);
}