diff --git a/btypes_big_integer/src/main/java/de/hhu/stups/btypes/BInteger.java b/btypes_big_integer/src/main/java/de/hhu/stups/btypes/BInteger.java index fd0404f55e4b35c2a9329574c594db53f8ff2c86..38fa40948b0e42e1434858bc2381b52e89c6a142 100755 --- a/btypes_big_integer/src/main/java/de/hhu/stups/btypes/BInteger.java +++ b/btypes_big_integer/src/main/java/de/hhu/stups/btypes/BInteger.java @@ -14,8 +14,8 @@ public final class BInteger extends Number implements Comparable<BInteger>, BObj private static final BigInteger JBI_TWO = BigInteger.valueOf(2); private static final BigInteger JBI_MINUS_ONE = BigInteger.valueOf(-1); - private static final BigInt CBI_ZERO = BigInt.fromLong(0); - private static final BigInt CBI_ONE = BigInt.fromLong(1); + private static final BigInt CBI_ZERO = BigInt.ZERO; + private static final BigInt CBI_ONE = BigInt.ONE; private static final BigInt CBI_TWO = BigInt.fromLong(2); private static final BigInt CBI_MINUS_ONE = BigInt.fromLong(-1);