fixed findbugs warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@744717 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3796de49e0
commit
59e6743960
|
@ -775,7 +775,10 @@ public class FastFourierTransformer implements Serializable {
|
|||
/** Computes the n<sup>th</sup> roots of unity.
|
||||
* A cache of already computed values is maintained.
|
||||
*/
|
||||
private static class RootsOfUnity {
|
||||
private static class RootsOfUnity implements Serializable {
|
||||
|
||||
/** Serializable version id. */
|
||||
private static final long serialVersionUID = 6404784357747329667L;
|
||||
|
||||
/** Number of roots of unity. */
|
||||
private int omegaCount;
|
||||
|
|
Loading…
Reference in New Issue