[1176] Extract method brace cosmetics
Extract method on the inner three lines below has braces layout that is incorrect. Coming from:
boardTestBindingSource.CurrentItemChanged +=
(sender, args) =>
{
// code here
};
You get:
boardTestBindingSource.CurrentItemChanged +=
(sender, args) =>
{
ShowCurrentBoard();
};
}
private void ShowCurrentBoard() {
// code here
}
Whereas the braces layout that it should have is:
private void ShowCurrentBoard()
{
// code here
}
Can't tell you precisely the braces layout options as options gives errors (JIRA submitted).
Please sign in to leave a comment.