Author: sseifert
Date: Fri Feb  5 22:09:33 2016
New Revision: 1728738

URL: http://svn.apache.org/viewvc?rev=1728738&view=rev
Log:
SLING-5161 adapt to latest signature of the new methods

Modified:
    
sling/trunk/testing/mocks/resourceresolver-mock/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java

Modified: 
sling/trunk/testing/mocks/resourceresolver-mock/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java
URL: 
http://svn.apache.org/viewvc/sling/trunk/testing/mocks/resourceresolver-mock/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java?rev=1728738&r1=1728737&r2=1728738&view=diff
==============================================================================
--- 
sling/trunk/testing/mocks/resourceresolver-mock/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java
 (original)
+++ 
sling/trunk/testing/mocks/resourceresolver-mock/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java
 Fri Feb  5 22:09:33 2016
@@ -413,11 +413,11 @@ public class MockResourceResolver extend
         return this.getResource(parentPath);
     }
 
-    public void copy(String srcAbsPath, String destAbsPath) throws 
PersistenceException {
+    public Resource copy(String srcAbsPath, String destAbsPath) throws 
PersistenceException {
         throw new UnsupportedOperationException();
     }
 
-    public void move(String srcAbsPath, String destAbsPath) throws 
PersistenceException {
+    public Resource move(String srcAbsPath, String destAbsPath) throws 
PersistenceException {
         throw new UnsupportedOperationException();
     }
 


Reply via email to