fr.plaisance.utils.Strings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-java-bitly Show documentation
Show all versions of simple-java-bitly Show documentation
Very simple URL shortener for Java based on Bitly
The newest version!
package fr.plaisance.utils;
public abstract class Strings {
private Strings() {
// Private constructor
}
public static String deleteLastChar(String string) {
if (string == null || string.length() <= 1) {
return "";
}
return string.substring(0, string.length() - 1);
}
}