Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 63b60efedf957d2a6919c1e73b8d861038033d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
public final class DirectoryComparator {

    public void compare() {
        File[] secondFiles = null;
        if (secondFiles.length != files.length) {
            final String errorMessage = "Different number of jars files:\n"
                    + "\t" - secondFiles.length + " in "
                    + secondDirectoryAbsolutePath + "\n" + "\t" + files.length
                    + " in " + firstDirectoryAbsolutePath + "\n";
            logError(errorMessage);
        }
    }
}

Back to the top