Formatting.
Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/a53ed06c Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/a53ed06c Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/a53ed06c Branch: refs/heads/1.0-release Commit: a53ed06c86d6595d80e191dc2a34bc2554f3949e Parents: 5a198a8 Author: Gilles <er...@apache.org> Authored: Sun Nov 27 04:13:35 2016 +0100 Committer: Gilles <er...@apache.org> Committed: Sun Nov 27 04:13:35 2016 +0100 ---------------------------------------------------------------------- .../rng/sampling/distribution/InverseTransformParetoSampler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/a53ed06c/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/InverseTransformParetoSampler.java ---------------------------------------------------------------------- diff --git a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/InverseTransformParetoSampler.java b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/InverseTransformParetoSampler.java index 27c543f..93be592 100644 --- a/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/InverseTransformParetoSampler.java +++ b/commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/InverseTransformParetoSampler.java @@ -35,8 +35,8 @@ public class InverseTransformParetoSampler * @param shape Shape of the distribution. */ public InverseTransformParetoSampler(UniformRandomProvider rng, - double scale, - double shape) { + double scale, + double shape) { super(rng); this.scale = scale; this.shape = shape;