HI All: Now that Java's had varargs for a while now, using APIs like org.apache.commons.lang3.StringUtils.join(Object[], char) feels backward to me. I want to say:
StringUtils.join('.', "foo", "bar", "bang");
Not:
StringUtils.join(new String[] { "foo", "bar", "bang" }, '.');
Any thoughts on deprecating the former for the latter (which would be a new
API)?
Gary
