Copilot commented on code in PR #6897:
URL: https://github.com/apache/ignite-3/pull/6897#discussion_r2491435871


##########
modules/catalog-compaction/src/integrationTest/java/org/apache/ignite/internal/catalog/compaction/ItCatalogCompactionTest.java:
##########
@@ -305,4 +333,109 @@ private static void expectEarliestCatalogVersion(int 
expectedVersion) {
             }
         });
     }
+
+    class DebugInfoCollector {

Review Comment:
   The inner class `DebugInfoCollector` should be declared as `static` since it 
doesn't need access to instance members of the outer class 
`ItCatalogCompactionTest`. This would make the design clearer and prevent 
unintended access to outer class state.
   ```suggestion
       static class DebugInfoCollector {
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to