You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2010/03/26 21:22:37 UTC

svn commit: r928042 - /incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java

Author: lhazlewood
Date: Fri Mar 26 20:22:37 2010
New Revision: 928042

URL: http://svn.apache.org/viewvc?rev=928042&view=rev
Log:
fixed minor issue with wording for a setter method

Modified:
    incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java

Modified: incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java?rev=928042&r1=928041&r2=928042&view=diff
==============================================================================
--- incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java (original)
+++ incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/Session.java Fri Mar 26 20:22:37 2010
@@ -85,8 +85,8 @@ public interface Session {
     /**
      * Sets the time in milliseconds that the session may remain idle before expiring.
      * <ul>
-     * <li>A negative return value means the session will never expire.</li>
-     * <li>A non-negative return value (0 or greater) means the session expiration will occur if idle for that
+     * <li>A negative value means the session will never expire.</li>
+     * <li>A non-negative value (0 or greater) means the session expiration will occur if idle for that
      * length of time.</li>
      * </ul>
      * <p/>