You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jm...@apache.org on 2006/08/20 03:04:11 UTC

svn commit: r432917 - /incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java

Author: jmarino
Date: Sat Aug 19 18:04:10 2006
New Revision: 432917

URL: http://svn.apache.org/viewvc?rev=432917&view=rev
Log:
cleanup sourcecheck error

Modified:
    incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java

Modified: incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java?rev=432917&r1=432916&r2=432917&view=diff
==============================================================================
--- incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java (original)
+++ incubator/tuscany/java/sca/host-api/src/main/java/org/apache/tuscany/host/servlet/ServletRequestInjector.java Sat Aug 19 18:04:10 2006
@@ -19,7 +19,6 @@
 package org.apache.tuscany.host.servlet;
 
 import java.io.IOException;
-
 import javax.servlet.ServletException;
 import javax.servlet.ServletRequest;
 import javax.servlet.ServletResponse;
@@ -31,12 +30,12 @@
 
     /**
      * Dispatch servlet requests to the Tuscany runtime
-     * 
-     * @param req  the ServletRequest object that contains the request the client made of the servlet
-     * @param res  the ServletResponse object that contains the response the servlet returns to the client
-     * @throws ServletException  if the request cannot be handled
-     * @throws IOException  if an input or output error occurs while handling the request
+     *
+     * @param req the ServletRequest object that contains the request the client made of the servlet
+     * @param res the ServletResponse object that contains the response the servlet returns to the client
+     * @throws ServletException if the request cannot be handled
+     * @throws IOException      if an input or output error occurs while handling the request
      */
-    public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException;
+    void service(ServletRequest req, ServletResponse res) throws ServletException, IOException;
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org