You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2020/03/24 10:30:43 UTC

[sling-org-apache-sling-installer-provider-jcr] branch master updated: SLING-9218 restore incorrectly deleted method

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-provider-jcr.git


The following commit(s) were added to refs/heads/master by this push:
     new ed8ac0b  SLING-9218 restore incorrectly deleted method
ed8ac0b is described below

commit ed8ac0bfe6eb9ec359f2afa28e45c0829cd42d1f
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Tue Mar 24 11:30:27 2020 +0100

    SLING-9218 restore incorrectly deleted method
---
 .../sling/installer/provider/jcr/impl/JcrInstaller.java       | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java b/src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java
index 5d8dcc1..07d12bb 100644
--- a/src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java
+++ b/src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java
@@ -586,6 +586,17 @@ public class JcrInstaller implements UpdateHandler {
     }
 
     /**
+     * @see org.apache.sling.installer.api.UpdateHandler#handleUpdate(java.lang.String, java.lang.String, java.lang.String, java.util.Dictionary, Map)
+     */
+    public UpdateResult handleUpdate(final String resourceType,
+            final String id,
+            final String url,
+            final Dictionary<String, Object> dict,
+            final Map<String, Object> attributes) {
+        return this.handleUpdate(resourceType, id, url, null, dict, attributes);
+    }
+
+    /**
      * @see org.apache.sling.installer.api.UpdateHandler#handleUpdate(java.lang.String, java.lang.String, java.lang.String, java.io.InputStream, Map)
      */
     public UpdateResult handleUpdate(final String resourceType,