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
@@ -24,12 +24,12 @@ public class SqlTreeProperties {
/**
* The bean properties in order.
*/
private List<BeanProperty> propsList = new ArrayList<BeanProperty>();
private final List<BeanProperty> propsList = new ArrayList<BeanProperty>();
/**
* Maintain a list of property names to detect embedded bean additions.
*/
private LinkedHashSet<String> propNames = new LinkedHashSet<String>();
private final LinkedHashSet<String> propNames = new LinkedHashSet<String>();
private boolean allProperties;