You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by "David Blevins (Jira)" <ji...@apache.org> on 2020/06/11 00:41:00 UTC

[jira] [Created] (TOMEE-2848) CXF "javax" return clause

David Blevins created TOMEE-2848:
------------------------------------

             Summary: CXF "javax" return clause
                 Key: TOMEE-2848
                 URL: https://issues.apache.org/jira/browse/TOMEE-2848
             Project: TomEE
          Issue Type: Sub-task
            Reporter: David Blevins
            Assignee: David Blevins


See TOMEE-2841 for Daniel's source code references and what classes need to be updated.

 

CXF has a few points where there are early return statements for java and javax, for example:
{code:java}
if (claz.getName().startsWith("java.") || claz.getName().startsWith("javax.")) {
    return;
} 
{code}
These need to get updated to the following:
{code:java}
if (claz.getName().startsWith("java.") || claz.getName().startsWith("javax.") || claz.getName().startsWith("jakarta.")) {
    return;
} 
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)