You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2012/10/09 17:59:17 UTC

svn commit: r1396086 - /incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java

Author: ilgrosso
Date: Tue Oct  9 15:59:17 2012
New Revision: 1396086

URL: http://svn.apache.org/viewvc?rev=1396086&view=rev
Log:
[SYNCOPE-217] Manually applying fix against provided patch

Modified:
    incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java

Modified: incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java
URL: http://svn.apache.org/viewvc/incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java?rev=1396086&r1=1396085&r2=1396086&view=diff
==============================================================================
--- incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java (original)
+++ incubator/syncope/branches/1_0_X/core/src/main/java/org/apache/syncope/core/persistence/beans/user/SyncopeUser.java Tue Oct  9 15:59:17 2012
@@ -434,7 +434,7 @@ public class SyncopeUser extends Abstrac
 
     public boolean hasTokenExpired() {
         return tokenExpireTime == null
-                ? null
+                ? false
                 : tokenExpireTime.before(new Date());
     }