Skip to content

Commit 3a12b1a

Browse files
committed
Recharacterize remaining switch tests: remove blank lines before default cases
1 parent b503325 commit 3a12b1a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Tests/CSharp/StatementTests/MethodStatementTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,6 @@ internal partial class Issue579SelectCaseWithCaseInsensitiveTextCompare
13021302
return true;
13031303
case var case1 when CultureInfo.CurrentCulture.CompareInfo.Compare(case1, astr_Temp ?? """", CompareOptions.IgnoreCase | CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth) == 0:
13041304
return false;
1305-
13061305
default:
13071306
return default;
13081307
}
@@ -1337,7 +1336,6 @@ internal partial class Issue707SelectCaseAsyncClass
13371336
case var @case when @case == """":
13381337
case var case1 when case1 == """":
13391338
return false;
1340-
13411339
default:
13421340
return true;
13431341
}
@@ -1506,7 +1504,6 @@ private object Test3(DataRow CurRow)
15061504
{
15071505
case var @case when @case == typeof(string):
15081506
return false;
1509-
15101507
default:
15111508
return true;
15121509
}

0 commit comments

Comments
 (0)