private Set getNoticeFiles()

in build-tools/src/main/java/co/elastic/otel/android/compilation/tools/tasks/rootproject/SubprojectNoticesCollectorTask.java [38:49]


    private Set<File> getNoticeFiles() {
        Set<File> noticeFiles = new HashSet<>();
        Set<File> noticeFilesDirs = getSubprojectNoticeFiles().getFiles();
        for (File dir : noticeFilesDirs) {
            File[] files = dir.listFiles();
            if (files == null) {
                continue;
            }
            noticeFiles.addAll(Arrays.asList(files));
        }
        return noticeFiles;
    }