sebb a écrit :
Whether wrapped code is difficult to read depends on where the code is
wrapped ...
The kind of wrapping that I find difficult to read is a wrapping on a
method invocation, for example:
foo
.bar()
or wrapping just after a parenthesis :
Foo foo = new Foo(
bar);
it's less annoying after a comma :
foo.doSomething(param1,
param2,
param2);
Emmanuel Bourg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]