]> source.dussan.org Git - javassist.git/commitdiff
JASSIST-85
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 14 Feb 2010 16:58:15 +0000 (16:58 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 14 Feb 2010 16:58:15 +0000 (16:58 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@508 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/util/proxy/ProxyFactory.java

index 82d98973942696a4426afe4190554f122de0d281..684d926b8f8f31fa159fcd9b895262723b94f57a 100644 (file)
@@ -748,7 +748,6 @@ public class ProxyFactory {
             if (!Modifier.isPrivate(methods[i].getModifiers())) {
                 Method m = methods[i];
                 String key = m.getName() + ':' + RuntimeSupport.makeDescriptor(m);
-                hash.put(key, methods[i]);
                 // JIRA JASSIST-85
                 // put the method to the cache, retrieve previous definition (if any) 
                 Method oldMethod = (Method)hash.put(key, methods[i]);