resolved conflicts
This commit is contained in:
@@ -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(" ", "_");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user