This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rng.git
commit 4b1135a3a400bf585736ab75d38fd2f2b2fe205c Author: Alex Herbert <[email protected]> AuthorDate: Thu Aug 5 14:31:23 2021 +0100 Use Command.execute --- .../commons/rng/examples/sampling/ExamplesSamplingApplication.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commons-rng-examples/examples-sampling/src/main/java/org/apache/commons/rng/examples/sampling/ExamplesSamplingApplication.java b/commons-rng-examples/examples-sampling/src/main/java/org/apache/commons/rng/examples/sampling/ExamplesSamplingApplication.java index 5a8f214..35bdd20 100644 --- a/commons-rng-examples/examples-sampling/src/main/java/org/apache/commons/rng/examples/sampling/ExamplesSamplingApplication.java +++ b/commons-rng-examples/examples-sampling/src/main/java/org/apache/commons/rng/examples/sampling/ExamplesSamplingApplication.java @@ -17,7 +17,6 @@ package org.apache.commons.rng.examples.sampling; import picocli.CommandLine; -import picocli.CommandLine.RunLast; /** * Executes testing utilities for the samplers in the Commons RNG library. @@ -25,7 +24,8 @@ import picocli.CommandLine.RunLast; * <p>Functionality includes:</p> * * <ul> - * <li>Outputting data from a random generator + * <li>Creating a PDF approximation using sample data from a distribution + * <li>Sampling from a small range from a distribution to visually inspect sampling density * </ul> */ public final class ExamplesSamplingApplication { @@ -46,6 +46,6 @@ public final class ExamplesSamplingApplication { .setCaseInsensitiveEnumValuesAllowed(true); // Parse the command line and invokes the Callable program - cmd.parseWithHandler(new RunLast(), args); + cmd.execute(args); } }
