You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2014/10/04 01:46:02 UTC

git commit: TAP5-2392: ExceptionReporterImpl makes use of org.apache.commons.io, even though not a compile dependency

Repository: tapestry-5
Updated Branches:
  refs/heads/master 0f3eb8a82 -> a4cc2fb69


TAP5-2392: ExceptionReporterImpl makes use of org.apache.commons.io, even though not a compile dependency


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a4cc2fb6
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a4cc2fb6
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a4cc2fb6

Branch: refs/heads/master
Commit: a4cc2fb6907b2b36a555103d74b89469b5971815
Parents: 0f3eb8a
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Oct 3 16:45:55 2014 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Oct 3 16:45:55 2014 -0700

----------------------------------------------------------------------
 .../internal/services/exceptions/ExceptionReporterImpl.java       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a4cc2fb6/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/exceptions/ExceptionReporterImpl.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/exceptions/ExceptionReporterImpl.java b/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/exceptions/ExceptionReporterImpl.java
index 3d0ab83..77a7161 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/exceptions/ExceptionReporterImpl.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/exceptions/ExceptionReporterImpl.java
@@ -12,7 +12,6 @@
 
 package org.apache.tapestry5.internal.services.exceptions;
 
-import org.apache.commons.io.IOUtils;
 import org.apache.tapestry5.SymbolConstants;
 import org.apache.tapestry5.func.F;
 import org.apache.tapestry5.func.Flow;
@@ -143,7 +142,7 @@ public class ExceptionReporterImpl implements ExceptionReporter
             writeException(writer, analysis);
         } finally
         {
-            IOUtils.closeQuietly(writer);
+            InternalUtils.close(writer);
         }
     }