Author: mgrigorov
Date: Thu Jul 14 10:00:08 2011
New Revision: 1146624
URL: http://svn.apache.org/viewvc?rev=1146624&view=rev
Log:
WICKET-3895 Ignore the exception when closing a connection used to get the
resource last modification time
Modified:
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/io/Connections.java
Modified:
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/io/Connections.java
URL:
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/io/Connections.java?rev=1146624&r1=1146623&r2=1146624&view=diff
==============================================================================
---
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/io/Connections.java
(original)
+++
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/util/io/Connections.java
Thu Jul 14 10:00:08 2011
@@ -70,7 +70,7 @@ public class Connections
}
finally
{
- close(connection);
+ closeQuietly(connection);
}
}