Selaa lähdekoodia

write0 should never delegate to parent. The ClassPool that the CtClass is associated

with should always be the pool that loaded the class.


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@82 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
patriot1burke 20 vuotta sitten
vanhempi
commit
0cc8b5343f
1 muutettua tiedostoa jossa 0 lisäystä ja 4 poistoa
  1. 0
    4
      src/main/javassist/ClassPool.java

+ 0
- 4
src/main/javassist/ClassPool.java Näytä tiedosto

@@ -525,10 +525,6 @@ public class ClassPool extends AbsClassPool {
boolean write0(String classname, DataOutputStream out, boolean callback)
throws NotFoundException, CannotCompileException, IOException
{
// first, delegate to the parent.
if (parent != null && parent.write0(classname, out, callback))
return true;

CtClass clazz = (CtClass)getCached(classname);
if (callback && translator != null
&& (clazz == null || !clazz.isFrozen())) {

Loading…
Peruuta
Tallenna