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 A3EF1DD0A for ; Sun, 11 Nov 2012 19:03:42 +0000 (UTC) Received: (qmail 24224 invoked by uid 500); 11 Nov 2012 19:03:42 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 24167 invoked by uid 500); 11 Nov 2012 19:03:42 -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 24160 invoked by uid 99); 11 Nov 2012 19:03:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Nov 2012 19:03:42 +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, 11 Nov 2012 19:03:40 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3D17123888CD for ; Sun, 11 Nov 2012 19:03:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1408083 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java Date: Sun, 11 Nov 2012 19:03:19 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121111190319.3D17123888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: oheger Date: Sun Nov 11 19:03:18 2012 New Revision: 1408083 URL: http://svn.apache.org/viewvc?rev=1408083&view=rev Log: Made generic conversion method public so that it can be accessed by DefaultBeanFactory. Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java?rev=1408083&r1=1408082&r2=1408083&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java (original) +++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/PropertyConverter.java Sun Nov 11 19:03:18 2012 @@ -95,7 +95,7 @@ public final class PropertyConverter * * @since 1.5 */ - static Object to(Class cls, Object value, Object[] params) throws ConversionException + public static Object to(Class cls, Object value, Object[] params) throws ConversionException { if (cls.isInstance(value)) {