Skip to content
Snippets Groups Projects
Verified Commit cf8a88b7 authored by Miles Vella's avatar Miles Vella
Browse files

use builtin clojure.BigInt constants

parent 2c5562ed
No related branches found
No related tags found
1 merge request!66Refactor of Java BTypes
Pipeline #151188 passed
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment