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

org.pustefixframework.security.Utils Maven / Gradle / Ivy

package org.pustefixframework.security;

public class Utils {
    
    public static String removeLineBreaks(String value) {
        value = value.replace('\n', ' ');
        value = value.replace('\r', ' ');
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy