undoing pointless tiny change to individual template model

This commit is contained in:
brianjlowe 2011-10-06 20:25:44 +00:00
parent adf5558aa4
commit c95b7efc0b

View file

@ -106,7 +106,7 @@ public abstract class BaseIndividualTemplateModel extends BaseTemplateModel {
} }
public GroupedPropertyList getPropertyList() { public GroupedPropertyList getPropertyList() {
if (!(propertyList instanceof GroupedPropertyList)) { if (propertyList == null) {
propertyList = new GroupedPropertyList(individual, vreq, policyHelper); propertyList = new GroupedPropertyList(individual, vreq, policyHelper);
} }
return propertyList; return propertyList;