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 3822f47 Javadoc: Remove redundant "java.lang" prefix 3822f47 is described below commit 3822f470571a4be9ef7c049db6c1a4e184febd6e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Dec 9 10:07:26 2023 -0500 Javadoc: Remove redundant "java.lang" prefix --- src/main/java/org/apache/commons/exec/DefaultExecutor.java | 2 +- src/main/java/org/apache/commons/exec/ProcessDestroyer.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/exec/DefaultExecutor.java b/src/main/java/org/apache/commons/exec/DefaultExecutor.java index 1f0e4a7..6b257ca 100644 --- a/src/main/java/org/apache/commons/exec/DefaultExecutor.java +++ b/src/main/java/org/apache/commons/exec/DefaultExecutor.java @@ -77,7 +77,7 @@ public class DefaultExecutor implements Executor { * The {@code PumpStreamHandler} pumps the output of the subprocess * into our {@code System.out} and {@code System.err} to avoid * into our {@code System.out} and {@code System.err} to avoid - * a blocked or deadlocked subprocess (see{@link java.lang.Process Process}). + * a blocked or deadlocked subprocess (see {@link Process Process}). */ public DefaultExecutor() { this.streamHandler = new PumpStreamHandler(); diff --git a/src/main/java/org/apache/commons/exec/ProcessDestroyer.java b/src/main/java/org/apache/commons/exec/ProcessDestroyer.java index 0e7e3ab..0cef9ce 100644 --- a/src/main/java/org/apache/commons/exec/ProcessDestroyer.java +++ b/src/main/java/org/apache/commons/exec/ProcessDestroyer.java @@ -18,7 +18,7 @@ package org.apache.commons.exec; /** - * Destroys all registered {@link java.lang.Process} after a certain event, + * Destroys all registered {@link Process} after a certain event, * typically when the VM exits * @see org.apache.commons.exec.ShutdownHookProcessDestroyer */ @@ -32,7 +32,7 @@ public interface ProcessDestroyer { * @param process * the process to add * @return {@code true} if the specified - * {@link java.lang.Process} was + * {@link Process} was * successfully added */ boolean add(Process process); @@ -45,7 +45,7 @@ public interface ProcessDestroyer { * @param process * the process to remove * @return {@code true} if the specified - * {@link java.lang.Process} was + * {@link Process} was * successfully removed */ boolean remove(Process process);