* Joe Darcy:
> - sb.append(Stream.of(typeparms).map(Class::typeVarBounds).
> - collect(Collectors.joining(",", "<", ">")));
> + sb.append(Arrays.stream(typeparms)
> + .map(Class::typeVarBounds)
> + .collect(Collectors.joining(",", "<", ">")));
> }I realize that this is a pre-existing issue, but isn't this approach a bit awkward? Creating a temporary string just to put it into a StringBuilder? Thanks, Florian
