String removePrefix(String prefix) { if (startsWith(prefix)) { return substring(prefix.length); } return this; }