Skip to content

Commit 780eb9f

Browse files
committed
Fix little blank
1 parent 6cdf3fd commit 780eb9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Localization.Analyzers/Localize/OldGetTranslateAnalyzer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private static bool IsFormatStringCall(IMethodSymbol methodSymbol) =>
105105
methodSymbol.ContainingType.ToDisplayString() == Constants.StringFormatTypeName;
106106

107107
private static InvocationExpressionSyntax GetArgumentInvocationExpression(InvocationExpressionSyntax invocationExpr, int index) =>
108-
invocationExpr.ArgumentList.Arguments[index].Expression as InvocationExpressionSyntax;
108+
invocationExpr.ArgumentList.Arguments[index].Expression as InvocationExpressionSyntax;
109109

110110
private static bool IsTranslateCall(SymbolInfo symbolInfo) =>
111111
symbolInfo.Symbol is IMethodSymbol innerMethodSymbol &&

0 commit comments

Comments
 (0)