Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 61715 invoked from network); 25 Jul 2008 08:41:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jul 2008 08:41:54 -0000 Received: (qmail 75780 invoked by uid 500); 25 Jul 2008 08:41:53 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 75537 invoked by uid 500); 25 Jul 2008 08:41:52 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 75526 invoked by uid 99); 25 Jul 2008 08:41:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 01:41:52 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 08:41:06 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 383F3234C189 for ; Fri, 25 Jul 2008 01:41:32 -0700 (PDT) Message-ID: <985442202.1216975292229.JavaMail.jira@brutus> Date: Fri, 25 Jul 2008 01:41:32 -0700 (PDT) From: "Emmanuel Bourg (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (CLI-150) Negative numbers mistaken for options In-Reply-To: <18078596.1201101994311.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CLI-150?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Emmanuel Bourg updated CLI-150: ------------------------------- Component/s: (was: CLI-2.x) Parser > Negative numbers mistaken for options > ------------------------------------- > > Key: CLI-150 > URL: https://issues.apache.org/jira/browse/CLI-150 > Project: Commons CLI > Issue Type: Bug > Components: Parser > Environment: Sun JDK 1.6, Ubuntu 7.04 > Reporter: Dioktos > Fix For: 2.0 > > Attachments: BugCLI150Test.java, patchCL150.patch > > > If an option has a negative numerical argument, the parser mistakes it for another option and throws an error. For example, consider: > {{Argument numArg = aBuilder.withValidator(NumberValidator.getNumberInstance()).withMinimum(1).withMaximum(1).create();}} > {{Option numOpt = oBuilder.withLongName("num").withArgument(numArg).create();}} > {{Group options = gBuilder.withOption(numOpt).create();}} > Then parsing {{--num -0.1}} results in: > {{Unexpected -0.1 while processing --num}} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.