Made constructor of transform.FastCosineTransformer private, as factory methods create() and createOrthogonal() should be preferred (MATH-677).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1213154 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-12-12 07:03:29 +00:00
parent 4f53d73b9f
commit 1a4b122eef
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class FastCosineTransformer implements RealTransformer {
* @see #create()
* @see #createOrthogonal()
*/
public FastCosineTransformer(final boolean orthogonal) {
private FastCosineTransformer(final boolean orthogonal) {
this.orthogonal = orthogonal;
}