File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ switch (input) {
12
12
case 1 :
13
13
case 2 :
14
14
prepareOneOrTwo();
15
- // fall through
15
+ // fall through
16
16
case 3 :
17
17
handleOneTwoOrThree();
18
18
break ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ private void foo(Suit suit) {
40
40
System.out.println("Red diamonds");
41
41
break;
42
42
case SPADES:
43
- // Fall through
43
+ // Fall through
44
44
case CLUBS:
45
45
bar();
46
46
System.out.println("Black suit");
@@ -132,7 +132,7 @@ int score = 0;
132
132
private void updateScore(Suit suit) {
133
133
switch(suit) {
134
134
case HEARTS:
135
- // Fall thru
135
+ // Fall thru
136
136
case DIAMONDS:
137
137
score += -1;
138
138
break;
@@ -175,16 +175,16 @@ private int foo(Suit suit){
175
175
if (bar()) {
176
176
break;
177
177
}
178
- // Fall through
178
+ // Fall through
179
179
case CLUBS:
180
180
if (baz()) {
181
181
return 1;
182
182
} else if (baz2()) {
183
183
throw new AssertionError(...);
184
184
}
185
- // Fall through
185
+ // Fall through
186
186
case SPADES:
187
- // Fall through
187
+ // Fall through
188
188
case DIAMONDS:
189
189
return 0;
190
190
}
You can’t perform that action at this time.
0 commit comments