Author: jalkanen
Date: Sun Aug 31 03:06:31 2008
New Revision: 690673

URL: http://svn.apache.org/viewvc?rev=690673&view=rev
Log:
Cleaned away a bunch of checkstyle warnings.

Modified:
    incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/ui/WikiServletFilter.java

Modified: 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/ui/WikiServletFilter.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/ui/WikiServletFilter.java?rev=690673&r1=690672&r2=690673&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/ui/WikiServletFilter.java 
(original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/ui/WikiServletFilter.java Sun 
Aug 31 03:06:31 2008
@@ -51,7 +51,6 @@
  * this method contains all of the logic needed to grab any user login 
credentials set 
  * by the container or by cookies.
  *  
- *  @author Janne Jalkanen
  *  @author Andrew Jaquith
  *
  */
@@ -60,6 +59,9 @@
     protected static final Logger log = Logger.getLogger( 
WikiServletFilter.class );
     protected WikiEngine m_engine = null;
 
+    /**
+     *  Creates a Wiki Servlet Filter.
+     */
     public WikiServletFilter()
     {
         super();
@@ -67,6 +69,9 @@
 
     /**
      * Initializes the WikiServletFilter.
+     * 
+     * @param config The FilterConfig.
+     * @throws ServletException If a WikiEngine cannot be started.
      */
     public void init( FilterConfig config ) throws ServletException
     {
@@ -89,8 +94,10 @@
     * [EMAIL PROTECTED] WikiRequestWrapper}.
     * @param request the current HTTP request object
     * @param response the current HTTP response object
+    * @param chain The Filter chain passed down.
     * @throws ServletException if [EMAIL PROTECTED] 
AuthenticationManager#login(HttpServletRequest)} fails for any reason
-     */
+    * @throws IOException If writing to the servlet response fails. 
+    */
     public void doFilter( ServletRequest request, ServletResponse response, 
FilterChain chain ) throws IOException, ServletException
     {
         //


Reply via email to