You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2017/12/05 20:50:38 UTC

svn commit: r1817233 - /openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java

Author: struberg
Date: Tue Dec  5 20:50:37 2017
New Revision: 1817233

URL: http://svn.apache.org/viewvc?rev=1817233&view=rev
Log:
OWB-1222 fix failure in exception signature bytecode for our subclass proxies

Modified:
    openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java

Modified: openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java?rev=1817233&r1=1817232&r2=1817233&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java (original)
+++ openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/proxy/SubclassProxyFactory.java Tue Dec  5 20:50:37 2017
@@ -168,7 +168,7 @@ public class SubclassProxyFactory extend
                     exceptions = exceptionTypes.length == 0 ? null : new String[exceptionTypes.length];
                     for (int i = 0; i < exceptionTypes.length; i++)
                     {
-                        exceptions[i] = Type.getDescriptor(exceptionTypes[i]);
+                        exceptions[i] = Type.getInternalName(exceptionTypes[i]);
                     }
                 }
             }