All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.mmarie.utils.Common Maven / Gradle / Ivy

The newest version!
package fr.mmarie.utils;

public final class Common {

    private Common() {
    }

    public static String sanitizeURL(String url) {
        if(!url.endsWith("/")) {
            url = url+"/";
        }

        return url;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy