Should be equals in checking if valid prefix when not shorter and with no arguments

Dieser Commit ist enthalten in:
dordsor21 2021-11-16 12:48:09 +00:00
Ursprung cf6f54bd28
Commit 575b0035df
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -46,9 +46,9 @@ public abstract class RichParser<E> extends InputParser<E> implements AliasedPar
}
int i = other.indexOf('[');
if (i == -1) {
return other.startsWith(prefix);
return other.equals(prefix);
}
return other.substring(0, i).equalsIgnoreCase(prefix);
return other.substring(0, i).equals(prefix);
};
}