File tree 1 file changed +5
-5
lines changed
src/main/java/com/thealgorithms/maths 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ public String toString() {
26
26
}
27
27
}
28
28
29
- public final static ComplexNumber ZERO = new ComplexNumber (0 , 0 );
30
- public final static ComplexNumber ONE = new ComplexNumber (1 , 0 );
31
- public final static ComplexNumber TWO = new ComplexNumber (2 , 0 );
32
- public final static ComplexNumber PLUS_I = new ComplexNumber (0 , 1 );
33
- public final static ComplexNumber MINUS_I = new ComplexNumber (0 , -1 );
29
+ public static final ComplexNumber ZERO = new ComplexNumber (0 , 0 );
30
+ public static final ComplexNumber ONE = new ComplexNumber (1 , 0 );
31
+ public static final ComplexNumber TWO = new ComplexNumber (2 , 0 );
32
+ public static final ComplexNumber PLUS_I = new ComplexNumber (0 , 1 );
33
+ public static final ComplexNumber MINUS_I = new ComplexNumber (0 , -1 );
34
34
35
35
/**
36
36
* add two complex numbers
You can’t perform that action at this time.
0 commit comments