style: enable RedundantModifier in checkstyle (#5140)

This commit is contained in:
Piotr Idzik
2024-05-03 21:10:49 +02:00
committed by GitHub
parent 1e2d7e9431
commit b3903f5768
38 changed files with 59 additions and 59 deletions

View File

@ -27,7 +27,7 @@ public class FFT {
/**
* Default Constructor. Creates the complex number 0.
*/
public Complex() {
Complex() {
real = 0;
img = 0;
}
@ -38,7 +38,7 @@ public class FFT {
* @param r The real part of the number.
* @param i The imaginary part of the number.
*/
public Complex(double r, double i) {
Complex(double r, double i) {
real = r;
img = i;
}