We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68c1c64 commit 3949291Copy full SHA for 3949291
1 file changed
src/main/java/com/codebrig/journey/JourneyLoader.java
@@ -78,11 +78,11 @@ public static void setup() throws RuntimeException {
78
if (is64bit) {
79
providerName = "windows_64";
80
jcefName = "win64";
81
- JOURNEY_LOADER_LISTENER.determinedOS("windows", 32);
+ JOURNEY_LOADER_LISTENER.determinedOS("windows", 64);
82
} else {
83
providerName = "windows_32";
84
jcefName = "win32";
85
- JOURNEY_LOADER_LISTENER.determinedOS("windows", 64);
+ JOURNEY_LOADER_LISTENER.determinedOS("windows", 32);
86
}
87
} else if (osName.toLowerCase().startsWith("linux")) {
88
providerName = "linux_64";
0 commit comments