-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
@Avamander
Description
For example when the code looks like this:
if (a != b) { return; }
it should be turned into:
if (a != b) { return; }
Same applies to switches:
switch (character) {
it should be turned into:
switch (character) {