I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit b7b5512e authored by dev's avatar dev
Browse files

Formatting

parent bb68728c
No related branches found
No related tags found
No related merge requests found
......@@ -196,14 +196,16 @@ public class NativeBigInteger extends BigInteger {
private final static String sCPUType; //The CPU Type to optimize for (one of the above strings)
static {
if (_isX86) // Don't try to resolve CPU type on non x86 hardware
if (_isX86) {// Don't try to resolve CPU type on non x86 hardware
sCPUType = resolveCPUType();
else if (_isArm)
}
else if (_isArm) {
sCPUType = JBIGI_OPTIMIZATION_ARM;
else if (_isPPC && !_isMac)
sCPUType = JBIGI_OPTIMIZATION_PPC;
else
sCPUType = null;
} else if (_isPPC && !_isMac) {
sCPUType = JBIGI_OPTIMIZATION_PPC;
} else {
sCPUType = null;
}
loadNative();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment