Browse Source

JASSIST-85

git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@508 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 14 years ago
parent
commit
ec34ba370a
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      src/main/javassist/util/proxy/ProxyFactory.java

+ 0
- 1
src/main/javassist/util/proxy/ProxyFactory.java View File

if (!Modifier.isPrivate(methods[i].getModifiers())) { if (!Modifier.isPrivate(methods[i].getModifiers())) {
Method m = methods[i]; Method m = methods[i];
String key = m.getName() + ':' + RuntimeSupport.makeDescriptor(m); String key = m.getName() + ':' + RuntimeSupport.makeDescriptor(m);
hash.put(key, methods[i]);
// JIRA JASSIST-85 // JIRA JASSIST-85
// put the method to the cache, retrieve previous definition (if any) // put the method to the cache, retrieve previous definition (if any)
Method oldMethod = (Method)hash.put(key, methods[i]); Method oldMethod = (Method)hash.put(key, methods[i]);

Loading…
Cancel
Save