Return-Path: X-Original-To: apmail-commons-notifications-archive@minotaur.apache.org Delivered-To: apmail-commons-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F70C100B7 for ; Sat, 9 May 2015 18:19:22 +0000 (UTC) Received: (qmail 36284 invoked by uid 500); 9 May 2015 18:19:22 -0000 Delivered-To: apmail-commons-notifications-archive@commons.apache.org Received: (qmail 36237 invoked by uid 500); 9 May 2015 18:19:22 -0000 Mailing-List: contact notifications-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 notifications@commons.apache.org Received: (qmail 36029 invoked by uid 99); 9 May 2015 18:19:22 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 May 2015 18:19:22 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 0CF08AC143A for ; Sat, 9 May 2015 18:19:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r950741 [37/40] - in /websites/production/commons/content/proper/commons-cli: ./ apidocs/ apidocs/org/apache/commons/cli/ apidocs/org/apache/commons/cli/class-use/ apidocs/resources/ apidocs/src-html/org/apache/commons/cli/ cobertura/ jacoc... Date: Sat, 09 May 2015 18:19:17 -0000 To: notifications@commons.apache.org From: britter@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150509181922.0CF08AC143A@hades.apache.org> Modified: websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/Option.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/Option.html (original) +++ websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/Option.html Sat May 9 18:19:15 2015 @@ -45,7 +45,7 @@ 37 * @see org.apache.commons.cli.Options 38 * @see org.apache.commons.cli.CommandLine 39 * -40 * @version $Id: Option.java 1669874 2015-03-29 09:10:08Z britter $ +40 * @version $Id: Option.java 1677406 2015-05-03 14:27:31Z britter $ 41 */ 42 public class Option implements Cloneable, Serializable 43 { @@ -471,7 +471,7 @@ 463 while (index != -1) 464 { 465 // next value to be added -466 if (values.size() == (numberOfArgs - 1)) +466 if (values.size() == numberOfArgs - 1) 467 { 468 break; 469 } @@ -674,7 +674,7 @@ 666 * 667 * @return a clone of this Option instance 668 * @throws RuntimeException if a {@link CloneNotSupportedException} has been thrown -669 * by {@link super#clone()} +669 * by {@code super.clone()} 670 */ 671 @Override 672 public Object clone() Modified: websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/OptionBuilder.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/OptionBuilder.html (original) +++ websites/production/commons/content/proper/commons-cli/xref/org/apache/commons/cli/OptionBuilder.html Sat May 9 18:19:15 2015 @@ -33,7 +33,7 @@ 25 * <p> 26 * This class is NOT thread safe. See <a href="https://issues.apache.org/jira/browse/CLI-209">CLI-209</a> 27 * -28 * @version $Id: OptionBuilder.java 1669814 2015-03-28 18:09:26Z britter $ +28 * @version $Id: OptionBuilder.java 1677400 2015-05-03 13:46:08Z britter $ 29 * @since 1.0 30 * @deprecated since 1.3, use {@link Option#builder(String)} instead 31 */ @@ -65,7 +65,7 @@ 57 private static char valuesep; 58 59 /** option builder instance */ -60 private static final OptionBuilder instance = new OptionBuilder(); +60 private static final OptionBuilder INSTANCE = new OptionBuilder(); 61 62 static 63 { @@ -106,7 +106,7 @@ 98 { 99 OptionBuilder.longopt = newLongopt; 100 -101 return instance; +101 return INSTANCE; 102 } 103 104 /** @@ -118,7 +118,7 @@ 110 { 111 OptionBuilder.numberOfArgs = 1; 112 -113 return instance; +113 return INSTANCE; 114 } 115 116 /** @@ -132,7 +132,7 @@ 124 { 125 OptionBuilder.numberOfArgs = hasArg ? 1 : Option.UNINITIALIZED; 126 -127 return instance; +127 return INSTANCE; 128 } 129 130 /** @@ -145,7 +145,7 @@ 137 { 138 OptionBuilder.argName = name; 139 -140 return instance; +140 return INSTANCE; 141 } 142 143 /** @@ -157,7 +157,7 @@ 149 { 150 OptionBuilder.required = true; 151 -152 return instance; +152 return INSTANCE; 153 } 154 155 /** @@ -183,7 +183,7 @@ 175 { 176 OptionBuilder.valuesep = sep; 177 -178 return instance; +178 return INSTANCE; 179 } 180 181 /** @@ -206,7 +206,7 @@ 198 { 199 OptionBuilder.valuesep = '='; 200 -201 return instance; +201 return INSTANCE; 202 } 203 204 /** @@ -220,7 +220,7 @@ 212 { 213 OptionBuilder.required = newRequired; 214 -215 return instance; +215 return INSTANCE; 216 } 217 218 /** @@ -232,7 +232,7 @@ 224 { 225 OptionBuilder.numberOfArgs = Option.UNLIMITED_VALUES; 226 -227 return instance; +227 return INSTANCE; 228 } 229 230 /** @@ -245,7 +245,7 @@ 237 { 238 OptionBuilder.numberOfArgs = num; 239 -240 return instance; +240 return INSTANCE; 241 } 242 243 /** @@ -258,7 +258,7 @@ 250 OptionBuilder.numberOfArgs = 1; 251 OptionBuilder.optionalArg = true; 252 -253 return instance; +253 return INSTANCE; 254 } 255 256 /** @@ -271,7 +271,7 @@ 263 OptionBuilder.numberOfArgs = Option.UNLIMITED_VALUES; 264 OptionBuilder.optionalArg = true; 265 -266 return instance; +266 return INSTANCE; 267 } 268 269 /** @@ -286,7 +286,7 @@ 278 OptionBuilder.numberOfArgs = numArgs; 279 OptionBuilder.optionalArg = true; 280 -281 return instance; +281 return INSTANCE; 282 } 283 284 /** @@ -318,7 +318,7 @@ 310 { 311 OptionBuilder.type = newType; 312 -313 return instance; +313 return INSTANCE; 314 } 315 316 /** @@ -331,7 +331,7 @@ 323 { 324 OptionBuilder.description = newDescription; 325 -326 return instance; +326 return INSTANCE; 327 } 328 329 /**