Removed tab.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1535290 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2013-10-24 06:58:32 +00:00
parent 721444f232
commit cffd29da6b
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class NormalDistribution extends AbstractRealDistribution {
/** {@inheritDoc} */
@Override
public double logDensity(double x) {
public double logDensity(double x) {
final double x0 = x - mean;
final double x1 = x0 / standardDeviation;
return -0.5 * x1 * x1 - logStandardDeviationPlusHalfLog2Pi;