Skip to content

Commit dc78ed3

Browse files
authored
Merge pull request #3111 from NextTurn/local
Remove an unused local variable
2 parents f84ebdb + 221e44e commit dc78ed3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/PropertySummaryDocumentationAnalyzer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ private static void AnalyzeSummaryElement(SyntaxNodeAnalysisContext context, Xml
135135
bool prefixIsGetsOrSets = text.StartsWith(startingTextGetsOrSets, StringComparison.OrdinalIgnoreCase);
136136
bool prefixIsGets = !prefixIsGetsOrSets && text.StartsWith(startingTextGets, StringComparison.OrdinalIgnoreCase);
137137
bool prefixIsSets = text.StartsWith(startingTextSets, StringComparison.OrdinalIgnoreCase);
138-
bool prefixIsReturns = text.StartsWith(startingTextReturns, StringComparison.OrdinalIgnoreCase);
139138

140139
bool getterVisible, setterVisible;
141140
if (getter != null && setter != null)

0 commit comments

Comments
 (0)