diff --git a/core/java/src/net/i2p/util/NativeBigInteger.java b/core/java/src/net/i2p/util/NativeBigInteger.java
index 0b2fae5e3d9690e0186463ff214a2f4cb25f76d7..c56c75d467a02b4674c587f378799571fc1d8c0a 100644
--- a/core/java/src/net/i2p/util/NativeBigInteger.java
+++ b/core/java/src/net/i2p/util/NativeBigInteger.java
@@ -695,7 +695,7 @@ public class NativeBigInteger extends BigInteger {
             rv.add(_libPrefix + getMiddleName1() + "none_64" + _libSuffix);
         // Add libjbigi-xxx-none.so
         // Note that libjbigi-osx-none.jnilib is a 'fat binary' with both PPC and x86-32
-        if ((!_isArm)  || (!_isPPC && !_isMac))
+        if (!_isArm && !_isPPC && !_isMac)
             rv.add(getResourceName(false));
         return rv;
     }