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

com.github.jobs.utils.StringUtils Maven / Gradle / Ivy

package com.github.jobs.utils;

/**
 * @author cristian
 */
public class StringUtils {
    public static String trim(String string) {
        if (string == null) {
            return "";
        }
        return string.trim();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy