You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by "Romain Manni-Bucau (JIRA)" <ji...@apache.org> on 2014/05/20 11:36:38 UTC

[jira] [Created] (TOMEE-1216) shouldSkip class algorithm should consider sax as it already consider w3c

Romain Manni-Bucau created TOMEE-1216:
-----------------------------------------

             Summary: shouldSkip class algorithm should consider sax as it already consider w3c
                 Key: TOMEE-1216
                 URL: https://issues.apache.org/jira/browse/TOMEE-1216
             Project: TomEE
          Issue Type: Bug
            Reporter: Romain Manni-Bucau


{code}
            if (org.startsWith("w3c.dom.")) {
                return isInJvm(name);
            }
{code}


should be

{code}
            if (org.startsWith("w3c.dom.") || org.startsWith("xml.sax.")) {
                return isInJvm(name);
            }
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)