From b7b5512e7a69bdef66a10ed8a1e0b575fd093d9a Mon Sep 17 00:00:00 2001 From: dev <dev@robertfoss.se> Date: Thu, 2 Apr 2015 23:01:41 +0000 Subject: [PATCH] Formatting --- core/java/src/net/i2p/util/NativeBigInteger.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/core/java/src/net/i2p/util/NativeBigInteger.java b/core/java/src/net/i2p/util/NativeBigInteger.java index e9f16d3c50..550060656f 100644 --- a/core/java/src/net/i2p/util/NativeBigInteger.java +++ b/core/java/src/net/i2p/util/NativeBigInteger.java @@ -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(); } -- GitLab