You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shale.apache.org by cr...@apache.org on 2006/08/15 00:35:51 UTC

svn commit: r431451 - /shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java

Author: craigmcc
Date: Mon Aug 14 15:35:51 2006
New Revision: 431451

URL: http://svn.apache.org/viewvc?rev=431451&view=rev
Log:
Clean out a few leftover debug print statements.

Modified:
    shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java

Modified: shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java?rev=431451&r1=431450&r2=431451&view=diff
==============================================================================
--- shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java (original)
+++ shale/framework/trunk/shale-core/src/main/java/org/apache/shale/view/faces/ViewPhaseListener.java Mon Aug 14 15:35:51 2006
@@ -135,7 +135,6 @@
      */
     private void afterInvokeApplication(PhaseEvent event) {
 
-        System.out.println("Performing afterInvokeApplication()");
         // Have we accumulated any exceptions during the current request?
         FacesContext context = event.getFacesContext();
         ExternalContext econtext = context.getExternalContext();
@@ -149,7 +148,6 @@
         String path =
           econtext.getInitParameter(Constants.EXCEPTION_DISPATCH_PATH);
         if (path == null) {
-            System.out.println("No afterInvokeApplication() init parameter to dispatch to");
             return;
         }
 
@@ -177,8 +175,6 @@
             // Dispatch to the specified error handler
             econtext.dispatch(path);
         } catch (IOException e) {
-            System.out.println("Exception during dispatch");
-            e.printStackTrace();
             handleException(context, e);
         }