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 AF8A067B2 for ; Sun, 22 May 2011 22:42:47 +0000 (UTC) Received: (qmail 97858 invoked by uid 500); 22 May 2011 22:42:47 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 97678 invoked by uid 500); 22 May 2011 22:42:47 -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 97670 invoked by uid 99); 22 May 2011 22:42:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 May 2011 22:42:47 +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; Sun, 22 May 2011 22:42:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4B5D0238896F; Sun, 22 May 2011 22:42:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1126262 - /incubator/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Date: Sun, 22 May 2011 22:42:24 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110522224224.4B5D0238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Sun May 22 22:42:23 2011 New Revision: 1126262 URL: http://svn.apache.org/viewvc?rev=1126262&view=rev Log: added Class raw type 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=1126262&r1=1126261&r2=1126262&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 Sun May 22 22:42:23 2011 @@ -2721,7 +2721,7 @@ public class OgnlRuntime * @param name The name of the method. * @return The most likely matching {@link Method}, or null if none could be found. */ - public static Method getReadMethod( Class target, String name ) + public static Method getReadMethod( Class target, String name ) { return getReadMethod( target, name, -1 ); }