[105059] remove dead code that's munching perfectly valid URI's passed into the CMDocumentFactory
diff --git a/bundles/org.eclipse.wst.xsd.core/src-contentmodel/org/eclipse/wst/xsd/contentmodel/internal/CMDocumentFactoryXSD.java b/bundles/org.eclipse.wst.xsd.core/src-contentmodel/org/eclipse/wst/xsd/contentmodel/internal/CMDocumentFactoryXSD.java index bbc9a8f..8c189d7 100644 --- a/bundles/org.eclipse.wst.xsd.core/src-contentmodel/org/eclipse/wst/xsd/contentmodel/internal/CMDocumentFactoryXSD.java +++ b/bundles/org.eclipse.wst.xsd.core/src-contentmodel/org/eclipse/wst/xsd/contentmodel/internal/CMDocumentFactoryXSD.java
@@ -30,30 +30,7 @@ public CMDocument createCMDocument(String uri) - { - // work around a bug in our parsers - // todo... revist this - // - String fileProtocol = "file:"; - if (uri.startsWith(fileProtocol)) - { - uri = uri.substring(fileProtocol.length()); - } - - // work around a VAJava bug - // todo... revist this - // - String valoaderProtocol = "valoader:/"; - if (uri.startsWith(valoaderProtocol)) - { - uri = uri.substring(valoaderProtocol.length()); - } - - // TODO... separate DTD/XSD into separate factories - // remove this resourceType variable - String resourceType = null; - - + { CMDocument result = null; try {