joerghoh opened a new pull request, #28:
URL: https://github.com/apache/sling-org-apache-sling-jcr-resource/pull/28

   In OAK-9819 the JackrabbitNode interface was extended by 
```getPropertyOrNull``` which can improve the performance in the common case of 
this pattern:
   
   ```
   if (node.hasProperty(PROP)) {
     Property p = node.getProperty(PROP);
   }
   ```
   
   This is a pattern we have a few times in this bundle, and this code could 
benefit quite a lot from this improvement.
   
   To make this work I had to update the Oak dependency to the latest release 
1.44.0.
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to