quintonm    2003/03/14 08:20:19

  Modified:    src/java/org/apache/turbine Turbine.java
  Log:
  style fixes
  
  Revision  Changes    Path
  1.37      +8 -8      jakarta-turbine-2/src/java/org/apache/turbine/Turbine.java
  
  Index: Turbine.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/Turbine.java,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- Turbine.java      13 Mar 2003 15:01:32 -0000      1.36
  +++ Turbine.java      14 Mar 2003 16:20:18 -0000      1.37
  @@ -250,7 +250,8 @@
   
                   if (rundataService == null)
                   {
  -                    throw new TurbineException("No RunData Service configured!");
  +                    throw new TurbineException(
  +                            "No RunData Service configured!");
                   }
   
               }
  @@ -559,7 +560,6 @@
        * if you need a DataURI and have no RunData object handy-
        *
        * @return An initialized ServerData object
  -     *
        */
       public static ServerData getDefaultServerData()
       {
  @@ -635,7 +635,7 @@
        * @exception ServletException a servlet exception.
        */
       public final void doGet(HttpServletRequest req, HttpServletResponse res)
  -        throws IOException, ServletException
  +            throws IOException, ServletException
       {
           // set to true if the request is to be redirected by the page
           boolean requestRedirected = false;
  @@ -736,8 +736,8 @@
               // than just the default page.  If you do, add logic to
               // DefaultPage to do what you want.
   
  -            String defaultPage = (templateService == null) 
  -                ? null :templateService.getDefaultPageName(data);
  +            String defaultPage = (templateService == null)
  +                    ? null :templateService.getDefaultPageName(data);
   
               if (defaultPage == null)
               {
  @@ -857,7 +857,7 @@
       /**
        * This method is executed if the configured Login action should be
        * executed by Turbine.
  -     *
  +     * <p>
        * This Action must be performed before the Session validation or we
        * get sent in an endless loop back to the Login screen before
        * the action can be performed
  @@ -895,7 +895,7 @@
       /**
        * This method is executed if the configured Logout action should be
        * executed by Turbine.
  -     *
  +     * <p>
        * This Action must be performed before the Session validation for the
        * session validator to send us back to the Login screen.
        *
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to