You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by em...@apache.org on 2019/05/16 02:34:30 UTC

[cxf] branch master updated: [CXF-8042]:doPrivileged block doesn't totally work in ProxyClassLoaderCache (#554)

This is an automated email from the ASF dual-hosted git repository.

ema pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 5464908  [CXF-8042]:doPrivileged block doesn't totally work in ProxyClassLoaderCache (#554)
5464908 is described below

commit 5464908d75ec9a2cd7093407dba7723c1269a65d
Author: jimma <em...@apache.org>
AuthorDate: Thu May 16 10:34:24 2019 +0800

    [CXF-8042]:doPrivileged block doesn't totally work in ProxyClassLoaderCache (#554)
---
 .../src/main/java/org/apache/cxf/common/util/ProxyClassLoaderCache.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/cxf/common/util/ProxyClassLoaderCache.java b/core/src/main/java/org/apache/cxf/common/util/ProxyClassLoaderCache.java
index 26fcb16..22e97a4 100644
--- a/core/src/main/java/org/apache/cxf/common/util/ProxyClassLoaderCache.java
+++ b/core/src/main/java/org/apache/cxf/common/util/ProxyClassLoaderCache.java
@@ -67,7 +67,7 @@ public class ProxyClassLoaderCache {
             LOG.log(Level.FINE, "interface for new created ProxyClassLoader is "
                 + currentInterface.getName());
             LOG.log(Level.FINE, "interface's classloader for new created ProxyClassLoader is "
-                + currentInterface.getClassLoader());
+                + getClassLoader(currentInterface));
         }
         return ret;
     }