mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-07-29 04:08:56 +00:00
Indent switch blocks content
For readability, indent "case" in switch blocks. Replace: switch (x) { case 1: // ... case 2: // ... case 3: { // a local scope block int i = 42; // ... } } By: switch (x) { case 1: // ... case 2: // ... case 3: { // a local scope block int i = 42; // ... } }
This commit is contained in:
parent
628f88ab89
commit
60b2f2ca64
3 changed files with 95 additions and 95 deletions
Loading…
Add table
Add a link
Reference in a new issue