CPU arch to lower case
This commit is contained in:
parent
d0bdd4071a
commit
ae0860ccc9
|
@ -203,9 +203,10 @@ public class Utilities {
|
||||||
return line.equals(STABLE_VER);
|
return line.equals(STABLE_VER);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressLint("DefaultLocale")
|
||||||
public boolean getCPUArch() {
|
public boolean getCPUArch() {
|
||||||
String arch = System.getProperty("os.arch");
|
String arch = System.getProperty("os.arch");
|
||||||
return !arch.matches(".*arm.*");
|
return !arch.toLowerCase().matches(".*arm.*");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue