Open kazachka opened 7 years ago
Google Style Guide does not explain how to wrap line at array declarator brackets. Can you please answer, which of that cases is valid: 1.
int x = new int[ ] {1, 2};
2.
int x = new int [] {1, 2};
If possible, please update style guide to include that information.
I would prohibit both cases
Google Style Guide does not explain how to wrap line at array declarator brackets. Can you please answer, which of that cases is valid: 1.
2.
If possible, please update style guide to include that information.