Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 94121D14C for ; Wed, 28 Nov 2012 00:39:46 +0000 (UTC) Received: (qmail 93510 invoked by uid 500); 28 Nov 2012 00:39:46 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 93462 invoked by uid 500); 28 Nov 2012 00:39:46 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 93454 invoked by uid 99); 28 Nov 2012 00:39:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2012 00:39:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2012 00:39:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2BB1F2388A40; Wed, 28 Nov 2012 00:39:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1414482 - /commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java Date: Wed, 28 Nov 2012 00:39:22 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121128003923.2BB1F2388A40@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Wed Nov 28 00:39:22 2012 New Revision: 1414482 URL: http://svn.apache.org/viewvc?rev=1414482&view=rev Log: Javadoc fixes. Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java?rev=1414482&r1=1414481&r2=1414482&view=diff ============================================================================== --- commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java (original) +++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/bsd/RExecClient.java Wed Nov 28 00:39:22 2012 @@ -37,25 +37,25 @@ import org.apache.commons.net.io.SocketI * As with virtually all of the client classes in org.apache.commons.net, this * class derives from SocketClient, inheriting its connection methods. * The way to use RExecClient is to first connect - * to the server, call the {@link #rexec rexec() } method, and then + * to the server, call the {@link #rexec rexec()} method, and then * fetch the connection's input, output, and optionally error streams. * Interaction with the remote command is controlled entirely through the * I/O streams. Once you have finished processing the streams, you should - * invoke {@link #disconnect disconnect() } to clean up properly. + * invoke {@link #disconnect disconnect()} to clean up properly. *

* By default the standard output and standard error streams of the * remote process are transmitted over the same connection, readable * from the input stream returned by - * {@link #getInputStream getInputStream() }. However, it is + * {@link #getInputStream getInputStream()}. However, it is * possible to tell the rexecd daemon to return the standard error * stream over a separate connection, readable from the input stream - * returned by {@link #getErrorStream getErrorStream() }. You + * returned by {@link #getErrorStream getErrorStream()}. You * can specify that a separate connection should be created for standard * error by setting the boolean separateErrorStream - * parameter of {@link #rexec rexec() } to true . + * parameter of {@link #rexec rexec()} to true . * The standard input of the remote process can be written to through * the output stream returned by - * {@link #getOutputStream getOutputSream() }. + * {@link #getOutputStream getOutputSream()}. *

*

* @see SocketClient