This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.testing.resourceresolver-mock-1.1.12 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-resourceresolver-mock.git
commit 453379d4880dbe65e8293dff203a5f81890d123e Author: Stefan Seifert <[email protected]> AuthorDate: Fri Feb 5 22:09:33 2016 +0000 SLING-5161 adapt to latest signature of the new methods git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/resourceresolver-mock@1728738 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/testing/resourceresolver/MockResourceResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java b/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java index 14210fb..2e2201e 100644 --- a/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java +++ b/src/main/java/org/apache/sling/testing/resourceresolver/MockResourceResolver.java @@ -413,11 +413,11 @@ public class MockResourceResolver extends SlingAdaptable implements ResourceReso 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(); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
