resolved conflicts

This commit is contained in:
rajesh
2024-10-23 00:14:01 +05:30
parent 5ef5cecef3
commit 4386aaafdd
9 changed files with 67 additions and 92 deletions

View File

@@ -303,4 +303,11 @@ public class Utils {
return text.replace(target, replacement != null ? replacement : "");
}
public static String replaceSpacesWithUnderscores(String content) {
if (content == null) {
return null;
}
return content.trim().replace(" ", "_");
}
}