You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Converts a List of String to a comma separated string of characters
* @param stringList
* @return String that is one string built of all elements in stringList separated by ", "
*/
public static String convertListToCommaSeparatedString(List<String> stringList) {
return StringUtils.join(stringList, ", ");
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: