[jboss-cvs] JBossAS SVN: r97109 - projects/javaee/trunk/jboss-servlet-api/src/main/javax/servlet/http.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 27 09:37:03 EST 2009


Author: remy.maucherat at jboss.com
Date: 2009-11-27 09:37:03 -0500 (Fri, 27 Nov 2009)
New Revision: 97109

Modified:
   projects/javaee/trunk/jboss-servlet-api/src/main/javax/servlet/http/HttpSessionEvent.java
Log:
- Cosmetic.

Modified: projects/javaee/trunk/jboss-servlet-api/src/main/javax/servlet/http/HttpSessionEvent.java
===================================================================
--- projects/javaee/trunk/jboss-servlet-api/src/main/javax/servlet/http/HttpSessionEvent.java	2009-11-27 14:07:53 UTC (rev 97108)
+++ projects/javaee/trunk/jboss-servlet-api/src/main/javax/servlet/http/HttpSessionEvent.java	2009-11-27 14:37:03 UTC (rev 97109)
@@ -52,23 +52,28 @@
  * limitations under the License.
  */
 
+package javax.servlet.http;
 
+/**
+ * This is the class representing event notifications for changes to
+ * sessions within a web application.
+ *
+ * @since Servlet 2.3
+ */
+public class HttpSessionEvent extends java.util.EventObject {
 
-package javax.servlet.http;
+    /**
+     * Construct a session event from the given source.
+     */
+    public HttpSessionEvent(HttpSession source) {
+        super(source);
+    }
 
-
-	/** This is the class representing event notifications for
-	* changes to sessions within a web application.
-	 * @since Servlet 2.3
-	*/
-public class HttpSessionEvent extends java.util.EventObject {
-	/** Construct a session event from the given source.*/
-	 public HttpSessionEvent(HttpSession source) {
-		super(source);
-}
-	/** Return the session that changed.*/
+    /**
+     * Return the session that changed.
+     */
     public HttpSession getSession () { 
-	return (HttpSession) super.getSource();
+        return (HttpSession) super.getSource();
     }
 }
 




More information about the jboss-cvs-commits mailing list