Skip to content

Commit

Permalink
format CSharp/DataFlowAnalysisExtensions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur Kelman authored and Timur Kelman committed Dec 8, 2023
1 parent fc6d578 commit 85d9f40
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions CodeConverter/CSharp/DataFlowAnalysisExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ internal static class DataFlowAnalysisExtensions
/// </summary>
public static System.Collections.Immutable.ImmutableArray<ISymbol> ReadInsideSafe(this DataFlowAnalysis dataFlow)
{
try
{
try {
return dataFlow.ReadInside;
}
catch
{
} catch {
return dataFlow.ReadInside;
}
}
Expand Down

0 comments on commit 85d9f40

Please sign in to comment.