style: include DLS_DEAD_LOCAL_STORE (#5276)

This commit is contained in:
Piotr Idzik
2024-07-05 21:52:54 +02:00
committed by GitHub
parent 26b4b82949
commit 96e59e063a
3 changed files with 2 additions and 9 deletions

View File

@ -7,7 +7,6 @@ public final class Gaussian {
}
public static ArrayList<Double> gaussian(int matSize, ArrayList<Double> matrix) {
ArrayList<Double> answerArray = new ArrayList<Double>();
int i;
int j = 0;
@ -22,8 +21,7 @@ public final class Gaussian {
}
mat = gaussianElimination(matSize, i, mat);
answerArray = valueOfGaussian(matSize, x, mat);
return answerArray;
return valueOfGaussian(matSize, x, mat);
}
// Perform Gaussian elimination