maksaska commented on code in PR #12017:
URL: https://github.com/apache/ignite/pull/12017#discussion_r2106163759


##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/clients/JdbcThinCompatibilityTest.java:
##########
@@ -53,10 +53,10 @@ private static void executeSql(IgniteEx igniteEx, String 
sql) {
     @Override protected void beforeTest() throws Exception {
         super.beforeTest();
 
-        int majorJavaVer = U.majorJavaVersion(U.jdkVersion());
+        int majorJavaVer = 
CommonUtils.majorJavaVersion(CommonUtils.jdkVersion());

Review Comment:
   Fixed



##########
modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteProcessProxy.java:
##########
@@ -220,7 +221,7 @@ public IgniteProcessProxy(
      */
     private static void validateRemoteJre(@Nullable String javaHome) throws 
IOException, InterruptedException {
         int remoteMajorVer = new JavaVersionCommand().majorVersion(javaHome);
-        int locMajorVer = 
U.majorJavaVersion(System.getProperty("java.version"));
+        int locMajorVer = 
CommonUtils.majorJavaVersion(System.getProperty("java.version"));

Review Comment:
   Fixed



##########
modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/JavaVersionCommandParser.java:
##########
@@ -43,6 +43,6 @@ static int extractMajorVersion(String versionCommandOutput) {
 
         String fullJavaVer = matcher.group(2);
 
-        return U.majorJavaVersion(fullJavaVer);
+        return CommonUtils.majorJavaVersion(fullJavaVer);

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

Reply via email to