initializer-generator/src/main/java/org/apache/dubbo/initializer/generation/extension/codes/sample/ProtoBufCodeContributor.java [124:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected Map<Dependency, String> getRepos(InitializerProjectDescription description) {
        Map<String, Dependency> dependencyMap = description.getRequestedDependencies();
        Architecture arch = description.getArchitecture();

        if (CollectionUtils.isEmpty(dependencyMap)) {
            return Collections.emptyMap();
        }

        return dependencyMap.entrySet().stream()
                .filter(entry -> this.filterByModule(entry, arch))
                .collect(Collectors.toMap(Map.Entry::getValue, entity -> toPath(entity.getKey())));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



initializer-generator/src/main/java/com/alibaba/initializer/generation/extension/SampleCodeContributor.java [159:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected Map<Dependency, String> getRepos(InitializerProjectDescription description) {
        Map<String, Dependency> dependencyMap = description.getRequestedDependencies();
        Architecture arch = description.getArchitecture();

        if (CollectionUtils.isEmpty(dependencyMap)) {
            return Collections.emptyMap();
        }

        return dependencyMap.entrySet().stream()
                .filter(entry -> this.filterByModule(entry, arch))
                .collect(Collectors.toMap(Map.Entry::getValue, entity -> toPath(entity.getKey())));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



