jsedding commented on code in PR #2436:
URL: https://github.com/apache/jackrabbit-oak/pull/2436#discussion_r2260665847


##########
oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/AzureJournalFile.java:
##########
@@ -33,16 +33,19 @@
 
 import java.io.ByteArrayInputStream;
 import java.io.IOException;
-import java.util.*;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
+import java.util.ArrayList;
+import java.util.Comparator;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
 import java.util.stream.Collectors;
 
 public class AzureJournalFile implements JournalFile {
 
     private static final Logger log = 
LoggerFactory.getLogger(AzureJournalFile.class);
 
-    private static final int JOURNAL_LINE_LIMIT = 
Integer.getInteger("org.apache.jackrabbit.oak.segment.azure.journal.lines", 
40_000);
+    static final int JOURNAL_LINE_LIMIT = 
Integer.getInteger("org.apache.jackrabbit.oak.segment.azure.journal.lines", 
40_000);

Review Comment:
   agreed, but I would say that's for a different JIRA ticket.



-- 
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