What input code did you provide to the formatter?
class MyClass {
/// Some docs
int foo = 4;
}
What output did the formatter produce?
No change.
class MyClass {
/// Some docs
int foo = 4;
}
What output did you expect or want the formatter to produce?
class MyClass {
/// Some docs
int foo = 4;
}
It does remove the empty line if instead of the doc comment we have an annotation so I expected the same behaviour.
Thanks, @munificent!
What input code did you provide to the formatter?
What output did the formatter produce?
No change.
What output did you expect or want the formatter to produce?
It does remove the empty line if instead of the doc comment we have an annotation so I expected the same behaviour.
Thanks, @munificent!