Right. Sorry all.
Mike
On Nov 20 2011, at 10:34 , Brian Goetz wrote:
>> BTW, your lambda could be simpler as you can use expression form for this case:
>>
>> final C c = () -> { "Hello World" };
>
> Without the braces :)
>
> final C c = () -> "Hello World";