This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-cli.git
The following commit(s) were added to refs/heads/master by this push:
new a476f5c7 Fix Javadoc error on Java 11 only
a476f5c7 is described below
commit a476f5c7a6598047cb015578f43952cfd0991242
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 5 08:27:31 2025 -0500
Fix Javadoc error on Java 11 only
---
src/main/javadoc/overview.html | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/main/javadoc/overview.html b/src/main/javadoc/overview.html
index 794640d8..df4bfb8d 100644
--- a/src/main/javadoc/overview.html
+++ b/src/main/javadoc/overview.html
@@ -23,7 +23,7 @@ limitations under the License.
</a>
<section id="Introducing">
<h1>
- <img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Introducing Apache Commons CLI
+ <img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Introducing Apache Commons CLI
</h1>
<p>The Apacahe Commons CLI component parses command-line arguments for
your application.</p>
@@ -120,7 +120,7 @@ limitations under the License.
</section>
</section>
<section id="Using">
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Using Apache Commons CLI</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Using Apache Commons CLI</h1>
<p>
The following sections describe some example scenarios on how to
use CLI in applications.
@@ -243,7 +243,7 @@ else {
</section>
<section>
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Using Ant as an Example</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Using Ant as an Example</h1>
<p>
<a href="https://ant.apache.org/">Ant</a> will be used
here to illustrate how to create the <code>Options</code> required.
The following
@@ -434,7 +434,7 @@ formatter.printHelp("ant", options);</code></pre>
</section>
<section>
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Creating an ls Example</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Creating an ls Example</h1>
<p>
One of the most widely used command line applications in the *nix world
is <code>ls</code>. Due to the large number of options required for
<code>ls</code>
@@ -497,7 +497,7 @@ catch (ParseException exp) {
} </code></pre>
</section>
<section>
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Converting (Parsing) Option Values</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Converting (Parsing) Option Values</h1>
<p>
By in most cases the values on the command line are retrieved as
Strings via the
<code>commandLine.getOptionValue(key)</code> command. However, it
is possible for
@@ -575,7 +575,7 @@ public static void main(String[] args) {
</p>
</section>
<section>
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Deprecating Options</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Deprecating Options</h1>
<p>
Options may be marked as deprecated using ghe
<code>Option.builder.deprecated()</code> method.
Additional information may be specified by passing a
<code>DeprecatedAttributes</code> instance to the
@@ -729,7 +729,7 @@ public static void main(String[] args) {
</section>
</section>
<section id="Properties">
- <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf" />Defining Option Properties</h1>
+ <h1><img src="org/apache/commons/cli/doc-files//leaf.svg" style="height:
1em; padding-right: 0.25em" alt="leaf">Defining Option Properties</h1>
<p>
The following are the properties that each
<a
href="javadocs/api-release/org/apache/commons/cli/Option.html">Option</a> has.
All of these