Skip to content

Commit 05b4991

Browse files
committed
PMD fix
1 parent 7aedeab commit 05b4991

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

pmd-exclude.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ com.thealgorithms.maths.KaprekarNumbers=UselessParentheses
4646
com.thealgorithms.maths.KeithNumber=UselessParentheses
4747
com.thealgorithms.maths.LeonardoNumber=UselessParentheses
4848
com.thealgorithms.maths.LinearDiophantineEquationsSolver=UselessParentheses
49-
com.thealgorithms.maths.MatrixUtil=UselessParentheses
5049
com.thealgorithms.maths.RomanNumeralUtil=UselessParentheses
5150
com.thealgorithms.maths.SecondMinMax=UselessParentheses
5251
com.thealgorithms.maths.SecondMinMaxTest=UnnecessaryFullyQualifiedName

src/main/java/com/thealgorithms/matrix/matrixexponentiation/Fibonacci.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ private Fibonacci() {
1818

1919
private static final BigDecimal[][] FIB_MATRIX = {{ONE, ONE}, {ONE, ZERO}};
2020
private static final BigDecimal[][] IDENTITY_MATRIX = {{ONE, ZERO}, {ZERO, ONE}};
21-
// First 2 fibonacci numbers
22-
private static final BigDecimal[][] BASE_FIB_NUMBERS = {{ONE}, {ZERO}};
2321

2422
/**
2523
* Calculates the fibonacci number using matrix exponentiaition technique

0 commit comments

Comments
 (0)