https://kotlinlang.org logo
e

eugene.kudelevsky

07/08/2018, 5:54 PM
Hi guys. We get a weird exception in our Spring app. We get it on one computer (Mac) only and can’t reproduce on any other. I’ve investigated it a bit and seen that “intArrayOf(sqlType)” is compiled as “KotlinPackage.intArrayOf(new int[]{sqlType})” on that machine. But on other machines the same code is just compiled to “new int[] {sqlType}“. Should KotlinPackage class be in the classpath at all? I didn’t find any information about it.