This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rng.git
commit fef61f72ac6b8b22fd86c87f29641bd1d07ac942 Author: Alex Herbert <[email protected]> AuthorDate: Sat Aug 22 14:08:47 2026 +0100 Simplify javadoc --- .../examples/jmh/sampling/distribution/ZigguratSamplerPerformance.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/commons-rng-examples/examples-jmh/src/main/java/org/apache/commons/rng/examples/jmh/sampling/distribution/ZigguratSamplerPerformance.java b/commons-rng-examples/examples-jmh/src/main/java/org/apache/commons/rng/examples/jmh/sampling/distribution/ZigguratSamplerPerformance.java index b2c89563..f919760f 100644 --- a/commons-rng-examples/examples-jmh/src/main/java/org/apache/commons/rng/examples/jmh/sampling/distribution/ZigguratSamplerPerformance.java +++ b/commons-rng-examples/examples-jmh/src/main/java/org/apache/commons/rng/examples/jmh/sampling/distribution/ZigguratSamplerPerformance.java @@ -3527,7 +3527,6 @@ public class ZigguratSamplerPerformance { * when sampling tries again targets this function. This allows sub-classes * to override the sample method to generate a sample with a different mean using: * <pre> - * @Override * public double sample() { * return super.sample() * mean; * } @@ -4820,7 +4819,6 @@ public class ZigguratSamplerPerformance { * when sampling tries again targets this function. This allows sub-classes * to override the sample method to generate a sample with a different mean using: * <pre> - * @Override * public double sample() { * return super.sample() * mean; * }
