public boolean equals()

in datasource-client/src/main/java/org/apache/seatunnel/datasource/configuration/ReadonlyConfig.java [108:117]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ReadonlyConfig)) {
            return false;
        }
        Map<String, Object> otherConf = ((ReadonlyConfig) obj).confData;
        return this.confData.equals(otherConf);
    }