A small JSON parsing library
Remi Forax
forax at univ-mlv.fr
Thu Feb 14 12:10:06 PST 2013
On 02/14/2013 06:36 PM, Sam Pullara wrote:
> On Feb 14, 2013, at 8:20 AM, Brian Goetz <brian.goetz at oracle.com
>>> We should really remove this stupid rule from the JLS and go back to the
>>> classical shadowing rules.
>> Your Big.java provides an excellent example why this rule is great! :)
> I think the opposite. All those builders are the same object. I'd like the freedom to name them the same.
>
> Sam
>
>
It's also annoying when you do a filter then map like
pathes.stream().filter(path -> path != null).map(path ->
path.getFileName().toString());
again, here, you want to use the same name, because it's the same thing.
Rémi
More information about the lambda-libs-spec-experts
mailing list