Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 89229 invoked from network); 21 Feb 2008 19:04:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Feb 2008 19:04:08 -0000 Received: (qmail 95595 invoked by uid 500); 21 Feb 2008 19:04:01 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 95536 invoked by uid 500); 21 Feb 2008 19:04:01 -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 95527 invoked by uid 99); 21 Feb 2008 19:04:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 11:04:01 -0800 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 19:03:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B55E11A9832; Thu, 21 Feb 2008 11:03:42 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r629935 - /commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java Date: Thu, 21 Feb 2008 19:03:42 -0000 To: commits@commons.apache.org From: jcarman@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080221190342.B55E11A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jcarman Date: Thu Feb 21 11:03:40 2008 New Revision: 629935 URL: http://svn.apache.org/viewvc?rev=629935&view=rev Log: Changed visibility to package-private. This class is not intended to be part of the public API. It's merely a utility class used by the JavassistProxyFactory implementation. Modified: commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java Modified: commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java?rev=629935&r1=629934&r2=629935&view=diff ============================================================================== --- commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java (original) +++ commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java Thu Feb 21 11:03:40 2008 @@ -30,12 +30,12 @@ import java.util.Set; /** - * Some utility methods for dealing with Javassist. + * Some utility methods for dealing with Javassist. This class is not part of the public API! * * @author James Carman * @since 1.0 */ -public class JavassistUtils +class JavassistUtils { //---------------------------------------------------------------------------------------------------------------------- // Fields