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-exec.git
The following commit(s) were added to refs/heads/master by this push:
new f211fbd5 Javadoc: Use semantic tag <strong> instead of style tag <b>
f211fbd5 is described below
commit f211fbd56ddc8efb0578fa937733f3309de30fb3
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Nov 15 11:16:59 2024 -0500
Javadoc: Use semantic tag <strong> instead of style tag <b>
---
src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java
b/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java
index 69869390..7cc156d5 100644
--- a/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java
+++ b/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java
@@ -52,9 +52,9 @@ public interface CommandLauncher {
/**
* Tests whether {@code exitValue} signals a failure on the current system
(OS specific).
* <p>
- * <b>Note</b> that this method relies on the conventions of the OS, it
will return false results if the application you are running doesn't follow
these
- * conventions. One notable exception is the Java VM provided by HP for
OpenVMS - it will return 0 if successful (like on any other platform), but this
- * signals a failure on OpenVMS. So if you execute a new Java VM on
OpenVMS, you cannot trust this method.
+ * <strong>Note</strong> that this method relies on the conventions of the
OS, it will return false results if the application you are running doesn't
+ * follow these conventions. One notable exception is the Java VM provided
by HP for OpenVMS - it will return 0 if successful (like on any other platform),
+ * but this signals a failure on OpenVMS. So if you execute a new Java VM
on OpenVMS, you cannot trust this method.
* </p>
*
* @param exitValue the exit value (return code) to be checked.