
org.pustefixframework.security.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pustefix-security Show documentation
Show all versions of pustefix-security Show documentation
Pustefix Application Security
The newest version!
package org.pustefixframework.security;
public class Utils {
public static String removeLineBreaks(String value) {
value = value.replace('\n', ' ');
value = value.replace('\r', ' ');
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy