src/main/java/org/apache/easyant/core/ivy/EasyAntRepositoryCacheManager.java [46:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ModuleDescriptorParser getModuleDescriptorParser(File moduleDescriptorFile) {
        try {
            return ModuleDescriptorParserRegistry.getInstance().getParser(
                    new URLResource(moduleDescriptorFile.toURI().toURL()));
        } catch (MalformedURLException e) {
            throw new RuntimeException("Can't access to " + moduleDescriptorFile.getAbsolutePath(), e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/easyant/core/ivy/EasyantResolutionCacheManager.java [39:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ModuleDescriptorParser getModuleDescriptorParser(File moduleDescriptorFile) {
        try {
            return ModuleDescriptorParserRegistry.getInstance().getParser(
                    new URLResource(moduleDescriptorFile.toURI().toURL()));
        } catch (MalformedURLException e) {
            throw new RuntimeException("Can't access to " + moduleDescriptorFile.getAbsolutePath(), e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



