mreutegg commented on code in PR #2393:
URL: https://github.com/apache/jackrabbit-oak/pull/2393#discussion_r2240109109


##########
oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tar/TarReader.java:
##########
@@ -631,23 +585,20 @@ private boolean hasGraph() {
      *
      * @return An instance of {@link Map}.
      */
-    BinaryReferencesIndex getBinaryReferences() {
-        BinaryReferencesIndex index = null;
+    @Nullable BinaryReferencesIndex getBinaryReferences() {
         try {
-
             Buffer binaryReferences = archive.getBinaryReferences();
-            if (binaryReferences == null && archive.isRemote()) {
-
+            if (binaryReferences == null) {

Review Comment:
   Please also update below log message that mentions "remote archive".



-- 
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: oak-dev-unsubscr...@jackrabbit.apache.org

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

Reply via email to