removing unnecessary HiddenFromDisplayBelowRoleLevelFilter log message

This commit is contained in:
bdc34 2011-02-04 19:42:38 +00:00
parent 40264e0c0b
commit ea36cea007

View file

@ -44,14 +44,12 @@ public class VitroFilterUtils {
* Gets a filter that filters out any resource * Gets a filter that filters out any resource
* that has a annotation of hiddenFromDisplayBelowRoleLevel higher than current user's role level * that has a annotation of hiddenFromDisplayBelowRoleLevel higher than current user's role level
*/ */
public static VitroFilters getDisplayFilterByRoleLevel(RoleLevel role, WebappDaoFactory wdf){ public static VitroFilters getDisplayFilterByRoleLevel(RoleLevel role, WebappDaoFactory wdf){
log.info("initializing HiddenFromDisplayBelowRoleLevelFilter");
return new HiddenFromDisplayBelowRoleLevelFilter(role, wdf); return new HiddenFromDisplayBelowRoleLevelFilter(role, wdf);
} }
/* bdc34: Currently, this is not called from anywhere in the code. */ /* bdc34: Currently, this is not called from anywhere in the code. */
public static VitroFilters getUpdateFilterByRoleLevel(RoleLevel role, WebappDaoFactory wdf){ public static VitroFilters getUpdateFilterByRoleLevel(RoleLevel role, WebappDaoFactory wdf){
log.info("initializing ProhibitedFromUpdateBelowRoleLevelFilter");
return new ProhibitedFromUpdateBelowRoleLevelFilter(role, wdf); return new ProhibitedFromUpdateBelowRoleLevelFilter(role, wdf);
} }