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 a8457ff Javadoc/Comments: Remove extra "whitespace" a8457ff is described below commit a8457fff967cc8d1c0f7cee2a3e3e605aa400f30 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 25 09:27:00 2023 -0400 Javadoc/Comments: Remove extra "whitespace" --- src/main/java/org/apache/commons/exec/CommandLine.java | 2 -- src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java | 2 -- src/main/java/org/apache/commons/exec/DefaultExecutor.java | 1 - src/main/java/org/apache/commons/exec/ExecuteException.java | 2 -- src/main/java/org/apache/commons/exec/ExecuteResultHandler.java | 2 -- src/main/java/org/apache/commons/exec/ExecuteStreamHandler.java | 2 -- src/main/java/org/apache/commons/exec/ExecuteWatchdog.java | 2 -- src/main/java/org/apache/commons/exec/Executor.java | 2 -- src/main/java/org/apache/commons/exec/InputStreamPumper.java | 2 -- src/main/java/org/apache/commons/exec/LogOutputStream.java | 2 -- src/main/java/org/apache/commons/exec/ProcessDestroyer.java | 2 -- src/main/java/org/apache/commons/exec/PumpStreamHandler.java | 2 -- src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java | 2 -- src/main/java/org/apache/commons/exec/StreamPumper.java | 2 -- src/main/java/org/apache/commons/exec/TimeoutObserver.java | 2 -- src/main/java/org/apache/commons/exec/Watchdog.java | 2 -- .../apache/commons/exec/environment/DefaultProcessingEnvironment.java | 1 - src/main/java/org/apache/commons/exec/environment/EnvironmentUtils.java | 2 -- src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java | 2 -- .../java/org/apache/commons/exec/launcher/CommandLauncherFactory.java | 2 -- src/main/java/org/apache/commons/exec/launcher/CommandLauncherImpl.java | 2 -- .../java/org/apache/commons/exec/launcher/CommandLauncherProxy.java | 2 -- .../java/org/apache/commons/exec/launcher/Java13CommandLauncher.java | 2 -- src/main/java/org/apache/commons/exec/launcher/OS2CommandLauncher.java | 2 -- src/main/java/org/apache/commons/exec/launcher/VmsCommandLauncher.java | 2 -- .../java/org/apache/commons/exec/launcher/WinNTCommandLauncher.java | 2 -- src/main/java/org/apache/commons/exec/util/DebugUtils.java | 2 -- src/main/java/org/apache/commons/exec/util/MapUtils.java | 2 -- src/main/java/org/apache/commons/exec/util/StringUtils.java | 2 -- src/test/java/org/apache/commons/exec/CommandLineTest.java | 1 - src/test/java/org/apache/commons/exec/DefaultExecutorTest.java | 1 - src/test/java/org/apache/commons/exec/LogOutputStreamTest.java | 2 -- src/test/java/org/apache/commons/exec/StandAloneTest.java | 2 -- src/test/java/org/apache/commons/exec/TestUtil.java | 1 - src/test/java/org/apache/commons/exec/TutorialTest.java | 2 -- .../java/org/apache/commons/exec/environment/EnvironmentUtilsTest.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec33Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec34Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec36Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec41Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec44Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec49Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec57Test.java | 1 - src/test/java/org/apache/commons/exec/issues/Exec60Test.java | 1 - src/test/java/org/apache/commons/exec/util/MapUtilTest.java | 1 - src/test/java/org/apache/commons/exec/util/StringUtilTest.java | 1 - 46 files changed, 76 deletions(-) diff --git a/src/main/java/org/apache/commons/exec/CommandLine.java b/src/main/java/org/apache/commons/exec/CommandLine.java index 13704dd..4cc5832 100644 --- a/src/main/java/org/apache/commons/exec/CommandLine.java +++ b/src/main/java/org/apache/commons/exec/CommandLine.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -29,7 +28,6 @@ import org.apache.commons.exec.util.StringUtils; /** * CommandLine objects help handling command lines specifying processes to execute. The class can be used to a command line by an application. - * */ public class CommandLine { diff --git a/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java b/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java index d47cfe7..bcfe175 100644 --- a/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java +++ b/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -21,7 +20,6 @@ package org.apache.commons.exec; /** * A default implementation of 'ExecuteResultHandler' used for asynchronous * process handling. - * */ public class DefaultExecuteResultHandler implements ExecuteResultHandler { diff --git a/src/main/java/org/apache/commons/exec/DefaultExecutor.java b/src/main/java/org/apache/commons/exec/DefaultExecutor.java index 88c02fd..09dc38a 100644 --- a/src/main/java/org/apache/commons/exec/DefaultExecutor.java +++ b/src/main/java/org/apache/commons/exec/DefaultExecutor.java @@ -42,7 +42,6 @@ import java.util.Map; * CommandLine cl = new CommandLine("ls -l"); * int exitvalue = exec.execute(cl); * </pre> - * */ public class DefaultExecutor implements Executor { diff --git a/src/main/java/org/apache/commons/exec/ExecuteException.java b/src/main/java/org/apache/commons/exec/ExecuteException.java index 7c8a287..9358fb0 100644 --- a/src/main/java/org/apache/commons/exec/ExecuteException.java +++ b/src/main/java/org/apache/commons/exec/ExecuteException.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -22,7 +21,6 @@ import java.io.IOException; /** * An exception indicating that the executing a subprocesses failed. - * */ public class ExecuteException extends IOException { diff --git a/src/main/java/org/apache/commons/exec/ExecuteResultHandler.java b/src/main/java/org/apache/commons/exec/ExecuteResultHandler.java index abbd40d..1d3335a 100644 --- a/src/main/java/org/apache/commons/exec/ExecuteResultHandler.java +++ b/src/main/java/org/apache/commons/exec/ExecuteResultHandler.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -24,7 +23,6 @@ package org.apache.commons.exec; * the executed process, i.e. the exit value or an exception. * * @see org.apache.commons.exec.Executor#execute(CommandLine, java.util.Map, ExecuteResultHandler) - * */ public interface ExecuteResultHandler { diff --git a/src/main/java/org/apache/commons/exec/ExecuteStreamHandler.java b/src/main/java/org/apache/commons/exec/ExecuteStreamHandler.java index e3b4273..b82a204 100644 --- a/src/main/java/org/apache/commons/exec/ExecuteStreamHandler.java +++ b/src/main/java/org/apache/commons/exec/ExecuteStreamHandler.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -25,7 +24,6 @@ import java.io.OutputStream; /** * Used by {@code Execute} to handle input and output stream of * subprocesses. - * */ public interface ExecuteStreamHandler { diff --git a/src/main/java/org/apache/commons/exec/ExecuteWatchdog.java b/src/main/java/org/apache/commons/exec/ExecuteWatchdog.java index 754d3b7..66f0d50 100644 --- a/src/main/java/org/apache/commons/exec/ExecuteWatchdog.java +++ b/src/main/java/org/apache/commons/exec/ExecuteWatchdog.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -47,7 +46,6 @@ import org.apache.commons.exec.util.DebugUtils; * * @see org.apache.commons.exec.Executor * @see org.apache.commons.exec.Watchdog - * */ public class ExecuteWatchdog implements TimeoutObserver { diff --git a/src/main/java/org/apache/commons/exec/Executor.java b/src/main/java/org/apache/commons/exec/Executor.java index 40a7cbd..c70e867 100644 --- a/src/main/java/org/apache/commons/exec/Executor.java +++ b/src/main/java/org/apache/commons/exec/Executor.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -42,7 +41,6 @@ import java.util.Map; * CommandLine cl = new CommandLine("ls -l"); * int exitvalue = exec.execute(cl); * </pre> - * */ public interface Executor { diff --git a/src/main/java/org/apache/commons/exec/InputStreamPumper.java b/src/main/java/org/apache/commons/exec/InputStreamPumper.java index 6adee33..5c11434 100644 --- a/src/main/java/org/apache/commons/exec/InputStreamPumper.java +++ b/src/main/java/org/apache/commons/exec/InputStreamPumper.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -25,7 +24,6 @@ import org.apache.commons.exec.util.DebugUtils; /** * Copies all data from an System.input stream to an output stream of the executed process. - * */ public class InputStreamPumper implements Runnable { diff --git a/src/main/java/org/apache/commons/exec/LogOutputStream.java b/src/main/java/org/apache/commons/exec/LogOutputStream.java index b056f60..0996df5 100644 --- a/src/main/java/org/apache/commons/exec/LogOutputStream.java +++ b/src/main/java/org/apache/commons/exec/LogOutputStream.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -28,7 +27,6 @@ import java.nio.charset.Charset; * error stream of then external process. The implementation * parses the incoming data to construct a line and passes * the complete line to an user-defined implementation. - * */ public abstract class LogOutputStream extends OutputStream { diff --git a/src/main/java/org/apache/commons/exec/ProcessDestroyer.java b/src/main/java/org/apache/commons/exec/ProcessDestroyer.java index 51b4495..0e7e3ab 100644 --- a/src/main/java/org/apache/commons/exec/ProcessDestroyer.java +++ b/src/main/java/org/apache/commons/exec/ProcessDestroyer.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -22,7 +21,6 @@ package org.apache.commons.exec; * Destroys all registered {@link java.lang.Process} after a certain event, * typically when the VM exits * @see org.apache.commons.exec.ShutdownHookProcessDestroyer - * */ public interface ProcessDestroyer { diff --git a/src/main/java/org/apache/commons/exec/PumpStreamHandler.java b/src/main/java/org/apache/commons/exec/PumpStreamHandler.java index 7521362..0d8bb80 100644 --- a/src/main/java/org/apache/commons/exec/PumpStreamHandler.java +++ b/src/main/java/org/apache/commons/exec/PumpStreamHandler.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -29,7 +28,6 @@ import java.io.PipedOutputStream; * Copies standard output and error of sub-processes to standard output and error * of the parent process. If output or error stream are set to null, any feedback * from that stream will be lost. - * */ public class PumpStreamHandler implements ExecuteStreamHandler { diff --git a/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java b/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java index d32382e..736e8c7 100644 --- a/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java +++ b/src/main/java/org/apache/commons/exec/ShutdownHookProcessDestroyer.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -23,7 +22,6 @@ import java.util.Vector; /** * Destroys all registered {@code Process}es when the VM exits. - * */ public class ShutdownHookProcessDestroyer implements ProcessDestroyer, Runnable { diff --git a/src/main/java/org/apache/commons/exec/StreamPumper.java b/src/main/java/org/apache/commons/exec/StreamPumper.java index ae7e52b..df839c9 100644 --- a/src/main/java/org/apache/commons/exec/StreamPumper.java +++ b/src/main/java/org/apache/commons/exec/StreamPumper.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -26,7 +25,6 @@ import org.apache.commons.exec.util.DebugUtils; /** * Copies all data from an input stream to an output stream. - * */ public class StreamPumper implements Runnable { diff --git a/src/main/java/org/apache/commons/exec/TimeoutObserver.java b/src/main/java/org/apache/commons/exec/TimeoutObserver.java index 0c24eea..670be8b 100644 --- a/src/main/java/org/apache/commons/exec/TimeoutObserver.java +++ b/src/main/java/org/apache/commons/exec/TimeoutObserver.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -22,7 +21,6 @@ package org.apache.commons.exec; * Interface for classes that want to be notified by Watchdog. * * @see org.apache.commons.exec.Watchdog - * */ public interface TimeoutObserver { diff --git a/src/main/java/org/apache/commons/exec/Watchdog.java b/src/main/java/org/apache/commons/exec/Watchdog.java index 1213ea4..978e624 100644 --- a/src/main/java/org/apache/commons/exec/Watchdog.java +++ b/src/main/java/org/apache/commons/exec/Watchdog.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -25,7 +24,6 @@ import java.util.Vector; * Generalization of {@code ExecuteWatchdog} * * @see org.apache.commons.exec.ExecuteWatchdog - * */ public class Watchdog implements Runnable { diff --git a/src/main/java/org/apache/commons/exec/environment/DefaultProcessingEnvironment.java b/src/main/java/org/apache/commons/exec/environment/DefaultProcessingEnvironment.java index e718dd6..08111ff 100644 --- a/src/main/java/org/apache/commons/exec/environment/DefaultProcessingEnvironment.java +++ b/src/main/java/org/apache/commons/exec/environment/DefaultProcessingEnvironment.java @@ -32,7 +32,6 @@ import org.apache.commons.exec.OS; * variables can be either retrieved directly from the * JVM or requires starting a process to get them running * an OS command line. - * */ public class DefaultProcessingEnvironment { diff --git a/src/main/java/org/apache/commons/exec/environment/EnvironmentUtils.java b/src/main/java/org/apache/commons/exec/environment/EnvironmentUtils.java index 97a66a5..515b04e 100644 --- a/src/main/java/org/apache/commons/exec/environment/EnvironmentUtils.java +++ b/src/main/java/org/apache/commons/exec/environment/EnvironmentUtils.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.environment; @@ -26,7 +25,6 @@ import java.util.Map.Entry; /** * Wrapper for environment variables. - * */ public class EnvironmentUtils { 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 b8fb4bf..db59d2a 100644 --- a/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java +++ b/src/main/java/org/apache/commons/exec/launcher/CommandLauncher.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -27,7 +26,6 @@ import org.apache.commons.exec.CommandLine; /** * Interface to shield the caller from the various platform-dependent * implementations. - * */ public interface CommandLauncher { diff --git a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherFactory.java b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherFactory.java index c6c0e80..5befe80 100644 --- a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherFactory.java +++ b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherFactory.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -22,7 +21,6 @@ import org.apache.commons.exec.OS; /** * Builds a command launcher for the OS and JVM we are running under. - * */ public final class CommandLauncherFactory { diff --git a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherImpl.java b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherImpl.java index 97274a0..c83eb5d 100644 --- a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherImpl.java +++ b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherImpl.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -29,7 +28,6 @@ import org.apache.commons.exec.environment.EnvironmentUtils; * A command launcher for a particular JVM/OS platform. This class is a general * purpose command launcher which can only launch commands in the current * working directory. - * */ public abstract class CommandLauncherImpl implements CommandLauncher { diff --git a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherProxy.java b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherProxy.java index f4fa059..9370149 100644 --- a/src/main/java/org/apache/commons/exec/launcher/CommandLauncherProxy.java +++ b/src/main/java/org/apache/commons/exec/launcher/CommandLauncherProxy.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -26,7 +25,6 @@ import org.apache.commons.exec.CommandLine; /** * A command launcher that proxies another command launcher. Sub-classes * override exec(args, env, workdir) - * */ public abstract class CommandLauncherProxy extends CommandLauncherImpl { diff --git a/src/main/java/org/apache/commons/exec/launcher/Java13CommandLauncher.java b/src/main/java/org/apache/commons/exec/launcher/Java13CommandLauncher.java index e71e469..0e06cb1 100644 --- a/src/main/java/org/apache/commons/exec/launcher/Java13CommandLauncher.java +++ b/src/main/java/org/apache/commons/exec/launcher/Java13CommandLauncher.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -28,7 +27,6 @@ import org.apache.commons.exec.environment.EnvironmentUtils; /** * A command launcher for JDK/JRE 1.3 (and higher). Uses the built-in * Runtime.exec() command - * */ public class Java13CommandLauncher extends CommandLauncherImpl { diff --git a/src/main/java/org/apache/commons/exec/launcher/OS2CommandLauncher.java b/src/main/java/org/apache/commons/exec/launcher/OS2CommandLauncher.java index 01698cc..96575ff 100644 --- a/src/main/java/org/apache/commons/exec/launcher/OS2CommandLauncher.java +++ b/src/main/java/org/apache/commons/exec/launcher/OS2CommandLauncher.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -33,7 +32,6 @@ import org.apache.commons.exec.CommandLine; * </p> * Please not that this class is currently unused because the Java13CommandLauncher * is used for 0S/2 - * */ public class OS2CommandLauncher extends CommandLauncherProxy { diff --git a/src/main/java/org/apache/commons/exec/launcher/VmsCommandLauncher.java b/src/main/java/org/apache/commons/exec/launcher/VmsCommandLauncher.java index d35bdc0..bf8f47b 100644 --- a/src/main/java/org/apache/commons/exec/launcher/VmsCommandLauncher.java +++ b/src/main/java/org/apache/commons/exec/launcher/VmsCommandLauncher.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -35,7 +34,6 @@ import org.apache.commons.exec.util.StringUtils; * A command launcher for VMS that writes the command to a temporary DCL script * before launching commands. This is due to limitations of both the DCL * interpreter and the Java VM implementation. - * */ public class VmsCommandLauncher extends Java13CommandLauncher { diff --git a/src/main/java/org/apache/commons/exec/launcher/WinNTCommandLauncher.java b/src/main/java/org/apache/commons/exec/launcher/WinNTCommandLauncher.java index b83fda8..27b3157 100644 --- a/src/main/java/org/apache/commons/exec/launcher/WinNTCommandLauncher.java +++ b/src/main/java/org/apache/commons/exec/launcher/WinNTCommandLauncher.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.launcher; @@ -27,7 +26,6 @@ import org.apache.commons.exec.CommandLine; /** * A command launcher for Windows XP/2000/NT that uses 'cmd.exe' when launching * commands in directories other than the current working directory. - * */ public class WinNTCommandLauncher extends CommandLauncherProxy { public WinNTCommandLauncher(final CommandLauncher launcher) { diff --git a/src/main/java/org/apache/commons/exec/util/DebugUtils.java b/src/main/java/org/apache/commons/exec/util/DebugUtils.java index 4285ca3..9bfc351 100644 --- a/src/main/java/org/apache/commons/exec/util/DebugUtils.java +++ b/src/main/java/org/apache/commons/exec/util/DebugUtils.java @@ -13,14 +13,12 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.util; /** * Provides debugging support. - * */ public class DebugUtils { diff --git a/src/main/java/org/apache/commons/exec/util/MapUtils.java b/src/main/java/org/apache/commons/exec/util/MapUtils.java index 5d01aee..eab3077 100644 --- a/src/main/java/org/apache/commons/exec/util/MapUtils.java +++ b/src/main/java/org/apache/commons/exec/util/MapUtils.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.util; @@ -24,7 +23,6 @@ import java.util.Map; /** * Helper classes to manipulate maps to pass substition map to the CommandLine. This class is not part of the public API * and could change without warning. - * */ public class MapUtils { diff --git a/src/main/java/org/apache/commons/exec/util/StringUtils.java b/src/main/java/org/apache/commons/exec/util/StringUtils.java index e5a5fdd..ed33f56 100644 --- a/src/main/java/org/apache/commons/exec/util/StringUtils.java +++ b/src/main/java/org/apache/commons/exec/util/StringUtils.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.util; @@ -31,7 +30,6 @@ import java.util.StringTokenizer; * * This class is not part of the public API and could change without * warning. - * */ public class StringUtils { diff --git a/src/test/java/org/apache/commons/exec/CommandLineTest.java b/src/test/java/org/apache/commons/exec/CommandLineTest.java index 6219310..8f53de6 100644 --- a/src/test/java/org/apache/commons/exec/CommandLineTest.java +++ b/src/test/java/org/apache/commons/exec/CommandLineTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; diff --git a/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java b/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java index a6317a4..ad65524 100644 --- a/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java +++ b/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; diff --git a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java index dc4b36e..1377432 100644 --- a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java +++ b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -32,7 +31,6 @@ import org.junit.Test; /** * Test the LogOutputStream. - * */ public class LogOutputStreamTest { diff --git a/src/test/java/org/apache/commons/exec/StandAloneTest.java b/src/test/java/org/apache/commons/exec/StandAloneTest.java index e5ade3d..7de0f60 100644 --- a/src/test/java/org/apache/commons/exec/StandAloneTest.java +++ b/src/test/java/org/apache/commons/exec/StandAloneTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -28,7 +27,6 @@ import org.junit.Test; /** * Placeholder for mailing list question - provided a minimal test case * to answer the question as sel-contained regression test. - * */ public class StandAloneTest { diff --git a/src/test/java/org/apache/commons/exec/TestUtil.java b/src/test/java/org/apache/commons/exec/TestUtil.java index f5b6e51..58036fd 100644 --- a/src/test/java/org/apache/commons/exec/TestUtil.java +++ b/src/test/java/org/apache/commons/exec/TestUtil.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; diff --git a/src/test/java/org/apache/commons/exec/TutorialTest.java b/src/test/java/org/apache/commons/exec/TutorialTest.java index 537187f..cf39a1d 100644 --- a/src/test/java/org/apache/commons/exec/TutorialTest.java +++ b/src/test/java/org/apache/commons/exec/TutorialTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec; @@ -34,7 +33,6 @@ import org.junit.Test; * <li>with print job timeouts to trigger the {@code ExecuteWatchdog} * <li>with the {@code exitValue} returned from the print script * </ul> - * */ public class TutorialTest { diff --git a/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilsTest.java b/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilsTest.java index b0beaa8..2a48f49 100644 --- a/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilsTest.java +++ b/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilsTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.environment; diff --git a/src/test/java/org/apache/commons/exec/issues/Exec33Test.java b/src/test/java/org/apache/commons/exec/issues/Exec33Test.java index ed7ebcf..d8a15a6 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec33Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec33Test.java @@ -32,7 +32,6 @@ import org.junit.Test; * Test the patch for EXEC-33 (https://issues.apache.org/jira/browse/EXEC-33) * * PumpStreamHandler hangs if System.in is redirect to process input stream . - * */ public class Exec33Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec34Test.java b/src/test/java/org/apache/commons/exec/issues/Exec34Test.java index e4eb468..dbd2f43 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec34Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec34Test.java @@ -33,7 +33,6 @@ import org.junit.Test; /** * EXEC-34 https://issues.apache.org/jira/browse/EXEC-34 - * */ public class Exec34Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java index 796b92a..f20cdf4 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java @@ -38,7 +38,6 @@ import org.junit.Test; /** * Test EXEC-36 see https://issues.apache.org/jira/browse/EXEC-36 - * */ public class Exec36Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec41Test.java b/src/test/java/org/apache/commons/exec/issues/Exec41Test.java index a6af4c6..f2e635a 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec41Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec41Test.java @@ -32,7 +32,6 @@ import org.junit.Test; /** * Test the patch for EXEC-41 (https://issues.apache.org/jira/browse/EXEC-41). - * */ public class Exec41Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec44Test.java b/src/test/java/org/apache/commons/exec/issues/Exec44Test.java index 6461c06..efe94d8 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec44Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec44Test.java @@ -32,7 +32,6 @@ import org.junit.Test; /** * Test EXEC-44 (https://issues.apache.org/jira/browse/EXEC-44). - * */ public class Exec44Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec49Test.java b/src/test/java/org/apache/commons/exec/issues/Exec49Test.java index 907a5c9..fda2401 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec49Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec49Test.java @@ -31,7 +31,6 @@ import org.junit.Test; /** * Test EXEC-44 (https://issues.apache.org/jira/browse/EXEC-44). - * */ public class Exec49Test { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec57Test.java b/src/test/java/org/apache/commons/exec/issues/Exec57Test.java index f1acb36..bfa714f 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec57Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec57Test.java @@ -30,7 +30,6 @@ import java.io.IOException; /** * Test EXEC-57 (https://issues.apache.org/jira/browse/EXEC-57). - * */ public class Exec57Test extends AbstractExecTest { diff --git a/src/test/java/org/apache/commons/exec/issues/Exec60Test.java b/src/test/java/org/apache/commons/exec/issues/Exec60Test.java index 6f55ec6..ebf9315 100644 --- a/src/test/java/org/apache/commons/exec/issues/Exec60Test.java +++ b/src/test/java/org/apache/commons/exec/issues/Exec60Test.java @@ -32,7 +32,6 @@ import static org.junit.Assert.assertTrue; /** * Test EXEC-60 (https://issues.apache.org/jira/browse/EXEC-60). - * */ public class Exec60Test extends AbstractExecTest { diff --git a/src/test/java/org/apache/commons/exec/util/MapUtilTest.java b/src/test/java/org/apache/commons/exec/util/MapUtilTest.java index 053e7b6..bc5b9c5 100644 --- a/src/test/java/org/apache/commons/exec/util/MapUtilTest.java +++ b/src/test/java/org/apache/commons/exec/util/MapUtilTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.util; diff --git a/src/test/java/org/apache/commons/exec/util/StringUtilTest.java b/src/test/java/org/apache/commons/exec/util/StringUtilTest.java index 9459ba8..3af7925 100644 --- a/src/test/java/org/apache/commons/exec/util/StringUtilTest.java +++ b/src/test/java/org/apache/commons/exec/util/StringUtilTest.java @@ -13,7 +13,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package org.apache.commons.exec.util;