mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-25 05:22:39 +08:00
style: enable RedundantModifier
in checkstyle (#5140)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user