Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.1.30
-
None
-
None
Description
With Oak as JCR implementation I see a lot of warnings like this:
org.apache.jackrabbit.oak.jcr.session.ItemImpl Item#refresh invokes Session#refresh!
To get rid of these we should rather use
node.getSession().refresh(...);
instead of
node.refresh(..);