public boolean equals()

in src/main/java/org/apache/maven/plugin/compiler/SourceDirectory.java [395:407]


    public boolean equals(Object obj) {
        if (obj instanceof SourceDirectory other) {
            return root.equals(other.root)
                    && includes.equals(other.includes)
                    && excludes.equals(other.excludes)
                    && fileKind == other.fileKind
                    && Objects.equals(moduleName, other.moduleName)
                    && release == other.release
                    && outputDirectory.equals(other.outputDirectory)
                    && outputFileKind == other.outputFileKind;
        }
        return false;
    }