Moved property group menu to a separate template. Some code cleanup.

This commit is contained in:
rjy7 2010-12-17 19:08:03 +00:00
parent 9118452d4f
commit 758c8761ea
4 changed files with 22 additions and 22 deletions

View file

@ -17,8 +17,7 @@ public abstract class BaseObjectPropertyDataPreprocessor implements
this.objectPropertyTemplateModel = optm;
this.wdf = wdf;
}
@Override
public void process(List<Map<String, String>> data) {
for (Map<String, String> map : data) {

View file

@ -25,12 +25,6 @@ public abstract class ObjectPropertyTemplateModel extends PropertyTemplateModel
private static final Log log = LogFactory.getLog(ObjectPropertyTemplateModel.class);
private static final String TYPE = "object";
/* NB The default preprocessor is not the same as the preprocessor for the default view. The latter
* actually defines its own preprocessor, whereas the default preprocessor is used for custom views
* that don't define a preprocessor.
*/
private static final String DEFAULT_PREPROCESSOR =
"edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.BaseObjectPropertyDataPreprocessor";
private PropertyListConfig config;