in src/main/java/org/apache/sling/cli/impl/CommandProcessor.java [193:205]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (obj instanceof CommandWithProps) {
CommandWithProps other = (CommandWithProps) obj;
return Objects.equals(group, other.group) && Objects.equals(name, other.name);
}
return false;
}