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:
parent
ddc239c8ed
commit
08f7775741
|
@ -43,7 +43,7 @@ public class FastCosineTransformer implements Serializable {
|
||||||
/**
|
/**
|
||||||
* Construct a default transformer.
|
* Construct a default transformer.
|
||||||
*/
|
*/
|
||||||
FastCosineTransformer() {
|
public FastCosineTransformer() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class FastFourierTransformer implements Serializable {
|
||||||
/**
|
/**
|
||||||
* Construct a default transformer.
|
* Construct a default transformer.
|
||||||
*/
|
*/
|
||||||
FastFourierTransformer() {
|
public FastFourierTransformer() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public class FastSineTransformer implements Serializable {
|
||||||
/**
|
/**
|
||||||
* Construct a default transformer.
|
* Construct a default transformer.
|
||||||
*/
|
*/
|
||||||
FastSineTransformer() {
|
public FastSineTransformer() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue