[
https://issues.apache.org/jira/browse/TOMEE-2848?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Richard Zowalla resolved TOMEE-2848.
------------------------------------
Resolution: Fixed
> 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
> Priority: Major
>
> 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.20.10#820010)