src/main/java/org/apache/easyant/core/ivy/EasyAntRepositoryCacheManager.java [45:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    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 [38:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    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);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



