jdk/src/share/classes/sun/reflect/misc/ReflectUtil.java
changeset 16108 e5fcdadc69b2
parent 16100 379f48d34516
child 18244 a1031f4526b2
--- a/jdk/src/share/classes/sun/reflect/misc/ReflectUtil.java	Tue Feb 05 15:35:35 2013 +0100
+++ b/jdk/src/share/classes/sun/reflect/misc/ReflectUtil.java	Mon Jan 28 15:53:29 2013 -0800
@@ -202,5 +202,7 @@
         }
     }
 
-    public static final String PROXY_PACKAGE = "sun.proxy";
+    // Note that bytecode instrumentation tools may exclude 'sun.*'
+    // classes but not generated proxy classes and so keep it in com.sun.*
+    public static final String PROXY_PACKAGE = "com.sun.proxy";
 }