You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by st...@locus.apache.org on 2000/05/10 17:02:08 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon Cocoon.java

stefano     00/05/10 08:02:08

  Modified:    src/org/apache/cocoon Cocoon.java
  Log:
  fixed problem with lack of return from error
  
  Revision  Changes    Path
  1.15      +3 -2      xml-cocoon/src/org/apache/cocoon/Cocoon.java
  
  Index: Cocoon.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/Cocoon.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- Cocoon.java	2000/05/01 23:53:16	1.14
  +++ Cocoon.java	2000/05/10 15:02:06	1.15
  @@ -1,4 +1,4 @@
  -/*-- $Id: Cocoon.java,v 1.14 2000/05/01 23:53:16 stefano Exp $ -- 
  +/*-- $Id: Cocoon.java,v 1.15 2000/05/10 15:02:06 stefano Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -64,7 +64,7 @@
    * separate different knowledge contexts in different processing layers.
    *
    * @author <a href="mailto:stefano@apache.org">Stefano Mazzocchi</a>
  - * @version $Revision: 1.14 $ $Date: 2000/05/01 23:53:16 $
  + * @version $Revision: 1.15 $ $Date: 2000/05/10 15:02:06 $
    */
   
   public class Cocoon extends HttpServlet implements Defaults {
  @@ -126,6 +126,7 @@
                  } catch (Exception ex) {
                      exception = ex;
                      message = "Unable to open resource: " + confsName;
  +                   return;
                  }
               } else {
                  confs = new Configurations(confsName);