diff options
author | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-06-11 13:14:37 +0200 |
---|---|---|
committer | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-06-11 13:14:37 +0200 |
commit | 767add8ab5d15bc9ac55a441a5bffc0682293e22 (patch) | |
tree | 9a3380e0741dd4957f2fddb616ecee12f2503617 /pdf-over-install-helper/src/main/java/at | |
parent | 8ecf9a4f7024b7bd9e249f599f9fd5e552dc5eac (diff) | |
download | pdf-over-767add8ab5d15bc9ac55a441a5bffc0682293e22.tar.gz pdf-over-767add8ab5d15bc9ac55a441a5bffc0682293e22.tar.bz2 pdf-over-767add8ab5d15bc9ac55a441a5bffc0682293e22.zip |
release rollback
Diffstat (limited to 'pdf-over-install-helper/src/main/java/at')
-rw-r--r-- | pdf-over-install-helper/src/main/java/at/asit/helper/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java b/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java index 9f39db2c..d9156a92 100644 --- a/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java +++ b/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java @@ -32,7 +32,7 @@ public class Main { public static int getArchBits() {
- String arch = System.getProperty("os.arch");
+ String arch = System.getProperty("sun.arch.data.model");
return arch.contains("64") ? 64 : 32;
}
|