You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jc...@apache.org on 2008/02/21 20:03:42 UTC

svn commit: r629935 - /commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java

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