When using the attached test.xml convensions file, the
following code is incorrectly formatted:
public void testSomething()
{
if (test) {
cha =
test.thisIsAReallyLongMethodSuperDKkdlsakldsklsdkdlskdsdldsajl
dsjdsakladjskldsjkladjkslajkdlsajkldsjakl(cha, cha,
cha, cha);
test("cha");
} else {
cha =
test.thisIsAReallyLongMethodSuperDKkdlsakldsklsdkdlskdsdldsajl
dsjdsakladjskldsjkladjkslajkdlsajkldsjakl(cha, cha,
cha, cha);
}
}
it is formatted as:
if (test)
{
cha = test
.thisIsAReallyLongMethodSuperDKkdlsakldsklsdkdlskdsdldsajlds
jdsakladjskldsjkladjkslajkdlsajkldsjakl(cha,
cha, cha, cha);
test("cha");
}
else
{
cha = test
.thisIsAReallyLongMethodSuperDKkdlsakldsklsdkdlskdsdldsa
jldsjdsakladjskldsjkladjkslajkdlsajkldsjakl(cha,
cha, cha, cha);
}
}
I was able to work around this issue with the attached
patch, but I am not sure if this is the right way to
fix the issue.
Convension used to reproduce failure
Java file which is incorrectly formatted
patch of DotPrinter which seems to work around the issue
Logged In: YES
user_id=524832
I'm interested in this one too...