diff --git a/core/java/src/net/i2p/util/NativeBigInteger.java b/core/java/src/net/i2p/util/NativeBigInteger.java
index e9f16d3c50d616da6913d35ab97d614fa62c1acd..550060656f18940f1d9fe75fdcf1b3caa7a5c949 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();
     }