Author: dvaleri Date: Wed Feb 20 21:10:14 2013 New Revision: 1448415 URL: http://svn.apache.org/r1448415 Log: [CAMEL-6090] Added missing method update to test implementation class.
Modified: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/strategy/GenericFileDeleteProcessStrategyTest.java Modified: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/strategy/GenericFileDeleteProcessStrategyTest.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/strategy/GenericFileDeleteProcessStrategyTest.java?rev=1448415&r1=1448414&r2=1448415&view=diff ============================================================================== --- camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/strategy/GenericFileDeleteProcessStrategyTest.java (original) +++ camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/strategy/GenericFileDeleteProcessStrategyTest.java Wed Feb 20 21:10:14 2013 @@ -70,6 +70,10 @@ public class GenericFileDeleteProcessStr public boolean retrieveFile(String name, Exchange exchange) throws GenericFileOperationFailedException { return false; } + @Override + public void releaseRetreivedFileResources(Exchange exchange) throws GenericFileOperationFailedException { + // No-op + } public boolean storeFile(String name, Exchange exchange) throws GenericFileOperationFailedException { return false;