maksaska commented on code in PR #12017: URL: https://github.com/apache/ignite/pull/12017#discussion_r2106164235
########## modules/core/pom.xml: ########## @@ -67,6 +67,13 @@ <scope>provided</scope> </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ignite-grid-unsafe</artifactId> + <version>${revision}</version> Review Comment: Fixed ########## modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/GridDiscoveryManager.java: ########## @@ -1399,7 +1400,7 @@ private void checkAttributes(Iterable<ClusterNode> nodes) throws IgniteCheckedEx private int nodeJavaMajorVersion(ClusterNode node) throws IgniteCheckedException { String verStr = node.<String>attribute("java.version"); - int res = U.majorJavaVersion(verStr); + int res = CommonUtils.majorJavaVersion(verStr); Review Comment: Fixed ########## modules/core/src/main/java/org/apache/ignite/internal/mem/file/MappedFile.java: ########## @@ -30,8 +30,8 @@ import org.apache.ignite.internal.util.typedef.internal.U; import sun.nio.ch.FileChannelImpl; -import static org.apache.ignite.internal.util.IgniteUtils.jdkVersion; -import static org.apache.ignite.internal.util.IgniteUtils.majorJavaVersion; +import static org.apache.ignite.internal.util.CommonUtils.jdkVersion; Review Comment: Fixed -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org