No effective change - add final modifier

This commit is contained in:
Robin Bygrave
2015-07-31 14:07:09 +12:00
parent 90886193c0
commit 831d2a6179
24 changed files with 34 additions and 39 deletions
@@ -20,15 +20,15 @@ public class SqlTreeAlias {
private int manyWhereCounter;
private TreeSet<String> joinProps = new TreeSet<String>();
private final TreeSet<String> joinProps = new TreeSet<String>();
private HashSet<String> embeddedPropertyJoins;
private TreeSet<String> manyWhereJoinProps = new TreeSet<String>();
private final TreeSet<String> manyWhereJoinProps = new TreeSet<String>();
private HashMap<String, String> aliasMap = new HashMap<String, String>();
private final HashMap<String, String> aliasMap = new HashMap<String, String>();
private HashMap<String, String> manyWhereAliasMap = new HashMap<String, String>();
private final HashMap<String, String> manyWhereAliasMap = new HashMap<String, String>();
private final String rootTableAlias;