Made constructors public in transform package.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@424172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2006-07-21 04:32:29 +00:00
parent ddc239c8ed
commit 08f7775741
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class FastCosineTransformer implements Serializable {
/**
* Construct a default transformer.
*/
FastCosineTransformer() {
public FastCosineTransformer() {
super();
}

View File

@ -55,7 +55,7 @@ public class FastFourierTransformer implements Serializable {
/**
* Construct a default transformer.
*/
FastFourierTransformer() {
public FastFourierTransformer() {
super();
}

View File

@ -43,7 +43,7 @@ public class FastSineTransformer implements Serializable {
/**
* Construct a default transformer.
*/
FastSineTransformer() {
public FastSineTransformer() {
super();
}