On 16-Jul-13 11:17 PM, Dan Smith wrote:
> > StringBuilder builder = createText(StringBuilder.class, builder -> builder.append("name"));
What is this meant to replace exactly? It's a shorthand for:
StringBuilder builder = new StringBuilder();
builder.append("name");
?
Maurizio