zstan commented on code in PR #12982:
URL: https://github.com/apache/ignite/pull/12982#discussion_r3152012449


##########
modules/binary/api/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java:
##########
@@ -490,7 +490,8 @@ private static Iterable<String> classesInPackage(String 
pkgName) {
                             for (File file : pkgDir.listFiles()) {
                                 String fileName = file.getName();
 
-                                if (file.isFile() && 
fileName.toLowerCase().endsWith(".class"))
+                                if (file.isFile() && 
fileName.toLowerCase().endsWith(".class")
+                                    && !fileName.equals("package-info.class"))

Review Comment:
   can you append a comment, why we need such a change plz ?



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