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 0503D100A5 for ; Sat, 1 Nov 2014 21:14:24 +0000 (UTC) Received: (qmail 75790 invoked by uid 500); 1 Nov 2014 21:14:23 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 75701 invoked by uid 500); 1 Nov 2014 21:14:23 -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 75692 invoked by uid 99); 1 Nov 2014 21:14:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Nov 2014 21:14:23 +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; Sat, 01 Nov 2014 21:14:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9CB2823888E4; Sat, 1 Nov 2014 21:14:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1636057 - in /commons/proper/exec/trunk/src: main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java test/java/org/apache/commons/exec/DefaultExecutorTest.java Date: Sat, 01 Nov 2014 21:14:00 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141101211400.9CB2823888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Sat Nov 1 21:14:00 2014 New Revision: 1636057 URL: http://svn.apache.org/r1636057 Log: Replace bogus foo (note the tag is NOT closed) with {@code foo} on the way to fixing Javadoc 8 errors. Modified: commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java Modified: commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java?rev=1636057&r1=1636056&r2=1636057&view=diff ============================================================================== --- commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java (original) +++ commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java Sat Nov 1 21:14:00 2014 @@ -65,7 +65,7 @@ public class DefaultExecuteResultHandler } /** - * Get the exception causing the process execution to fail. + * Get the {@code exception} causing the process execution to fail. * * @return Returns the exception. * @throws IllegalStateException if the process has not exited yet @@ -80,7 +80,7 @@ public class DefaultExecuteResultHandler } /** - * Get the exitValue of the process. + * Get the {@code exitValue} of the process. * * @return Returns the exitValue. * @throws IllegalStateException if the process has not exited yet Modified: commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java?rev=1636057&r1=1636056&r2=1636057&view=diff ============================================================================== --- commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java (original) +++ commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/DefaultExecutorTest.java Sat Nov 1 21:14:00 2014 @@ -621,7 +621,7 @@ public class DefaultExecutorTest { /** - * The test script reads an argument from stdin and prints + * The test script reads an argument from {@code stdin} and prints * the result to stdout. To make things slightly more interesting * we are using an asynchronous process. *