SEN-22 - Cleanup Tomcat hasRole
diff --git a/src/main/java/impl/org/openldap/sentry/J2eePolicyMgrImpl.java b/src/main/java/impl/org/openldap/sentry/J2eePolicyMgrImpl.java
index 36cc614..bbfafd7 100644
--- a/src/main/java/impl/org/openldap/sentry/J2eePolicyMgrImpl.java
+++ b/src/main/java/impl/org/openldap/sentry/J2eePolicyMgrImpl.java
@@ -400,11 +400,6 @@
         Session session = context.get( SESSION );
         VUtil.assertNotNull( session, GlobalErrIds.USER_SESS_NULL, fullMethodName );
 
-        // Check User temporal constraints in the Session:
-        CUtil.validateConstraints( session, CUtil.ConstraintType.USER, false );
-        // Check Roles temporal constraints; don't check DSD:
-        CUtil.validateConstraints( session, CUtil.ConstraintType.ROLE, false );
-        // Get the set of authorized roles from the Session:
         Set<String> authZRoles = accessMgr.authorizedRoles( session );
         if ( authZRoles != null && authZRoles.size() > 0 )
         {