public boolean equals()

in src/main/java/com/epam/gmp/service/ConfigLayer.java [67:73]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ConfigLayer that = (ConfigLayer) o;
        return Objects.equal(root, that.root) &&
                Objects.equal(scriptName, that.scriptName);
    }