You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2010/03/18 14:39:46 UTC

svn commit: r924771 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java

Author: lofwyr
Date: Thu Mar 18 13:39:45 2010
New Revision: 924771

URL: http://svn.apache.org/viewvc?rev=924771&view=rev
Log:
code style

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java?rev=924771&r1=924770&r2=924771&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/NonFacesRequestServlet.java Thu Mar 18 13:39:45 2010
@@ -41,8 +41,9 @@ public abstract class NonFacesRequestSer
 
   private static final Log LOG = LogFactory.getLog(NonFacesRequestServlet.class);
 
-  protected void service(HttpServletRequest request,
-      HttpServletResponse response) throws ServletException,
+  @Override
+  protected void service(HttpServletRequest request, HttpServletResponse response)
+      throws ServletException,
       IOException {
 
     LifecycleFactory lFactory = (LifecycleFactory)
@@ -83,7 +84,7 @@ public abstract class NonFacesRequestSer
   public abstract String invokeApplication(FacesContext facesContext);
 
   /**
-   * will be called to initilize the first ViewRoot,
+   * will be called to initialize the first ViewRoot,
    * may be overwritten by extended classes
    */
   public String getFromViewId() {