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:
Luc Maisonobe 2009-02-15 18:40:31 +00:00
parent 3796de49e0
commit 59e6743960
1 changed files with 4 additions and 1 deletions

View File

@ -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;