Return-Path: Delivered-To: apmail-incubator-felix-commits-archive@www.apache.org Received: (qmail 23492 invoked from network); 22 Sep 2006 13:58:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Sep 2006 13:58:57 -0000 Received: (qmail 15057 invoked by uid 500); 22 Sep 2006 13:58:57 -0000 Delivered-To: apmail-incubator-felix-commits-archive@incubator.apache.org Received: (qmail 15045 invoked by uid 500); 22 Sep 2006 13:58:57 -0000 Mailing-List: contact felix-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: felix-dev@incubator.apache.org Delivered-To: mailing list felix-commits@incubator.apache.org Received: (qmail 15019 invoked by uid 99); 22 Sep 2006 13:58:56 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2006 06:58:56 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=rickhall@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:64622] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 52/EB-06791-71CE3154 for ; Fri, 22 Sep 2006 06:58:48 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id A7F7D1A981F; Fri, 22 Sep 2006 06:58:30 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448937 - /incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java Date: Fri, 22 Sep 2006 13:58:30 -0000 To: felix-commits@incubator.apache.org From: rickhall@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060922135830.A7F7D1A981F@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rickhall Date: Fri Sep 22 06:58:30 2006 New Revision: 448937 URL: http://svn.apache.org/viewvc?view=rev&rev=448937 Log: The brackets and parentheses were reversed in toString(). Modified: incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java Modified: incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java URL: http://svn.apache.org/viewvc/incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java?view=diff&rev=448937&r1=448936&r2=448937 ============================================================================== --- incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java (original) +++ incubator/felix/trunk/framework/src/main/java/org/apache/felix/framework/searchpolicy/VersionRange.java Fri Sep 22 06:58:30 2006 @@ -104,11 +104,11 @@ if (m_high != null) { StringBuffer sb = new StringBuffer(); - sb.append(m_isLowInclusive ? '(' : '['); + sb.append(m_isLowInclusive ? '[' : '('); sb.append(m_low.toString()); sb.append(','); sb.append(m_high.toString()); - sb.append(m_isHighInclusive ? ')' : ']'); + sb.append(m_isHighInclusive ? ']' : ')'); } else {