File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/main/java/org/firebirdsql/decimal Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ enum DecimalFormat {
5050 final int exponentContinuationBits ;
5151 final int coefficientContinuationBits ;
5252 final int eLimit ;
53- private final int eMax ;
54- private final int eMin ;
5553 private final int exponentBias ;
5654 private final BigInteger maxCoefficient ;
5755 private final BigInteger minCoefficient ;
@@ -66,8 +64,8 @@ enum DecimalFormat {
6664 coefficientContinuationBits = calculateCoefficientContinuationBits (coefficientDigits );
6765 exponentContinuationBits = calculateExponentContinuationBits (formatBitLength , coefficientContinuationBits );
6866 eLimit = calculateExponentLimit (exponentContinuationBits );
69- eMin = -eLimit / 2 ;
70- eMax = -eMin + 1 ;
67+ int eMin = -eLimit / 2 ;
68+ //int eMax = -eMin + 1;
7169 exponentBias = -eMin + coefficientDigits - 1 ;
7270 char [] digits = new char [coefficientDigits ];
7371 Arrays .fill (digits , '9' );
You can’t perform that action at this time.
0 commit comments