fixed visibility of an internal constructor that should remain private

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@995987 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-09-10 21:24:15 +00:00
parent 294eaf3415
commit 92351cbb8f
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ public class DfpField implements Field<Dfp> {
* @param computeConstants if true, the transcendental constants for the given precision
* must be computed (setting this flag to false is RESERVED for the internal recursive call)
*/
public DfpField(final int decimalDigits, final boolean computeConstants) {
private DfpField(final int decimalDigits, final boolean computeConstants) {
this.radixDigits = (decimalDigits < 13) ? 4 : (decimalDigits + 3) / 4;
this.rMode = RoundingMode.ROUND_HALF_EVEN;