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 B605B4905 for ; Mon, 23 May 2011 19:56:20 +0000 (UTC) Received: (qmail 3393 invoked by uid 500); 23 May 2011 19:56:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 3288 invoked by uid 500); 23 May 2011 19:56:20 -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 3280 invoked by uid 99); 23 May 2011 19:56:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 May 2011 19:56:20 +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; Mon, 23 May 2011 19:56:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 63DD62388906; Mon, 23 May 2011 19:55:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1126698 - /incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Date: Mon, 23 May 2011 19:55:57 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110523195557.63DD62388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Mon May 23 19:55:57 2011 New Revision: 1126698 URL: http://svn.apache.org/viewvc?rev=1126698&view=rev Log: dropped typeSearch label that is never referenced Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Modified: incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java?rev=1126698&r1=1126697&r2=1126698&view=diff ============================================================================== --- incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java (original) +++ incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Mon May 23 19:55:57 2011 @@ -696,7 +696,7 @@ public class OgnlRuntime types = new Class[genTypes.length]; - typeSearch: for ( int i = 0; i < genTypes.length; i++ ) + for ( int i = 0; i < genTypes.length; i++ ) { TypeVariable paramType = null;