Skip to content

Commit

Permalink
Remove unused locals in System.ServiceModel.Syndication (dotnet#31841)
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtn authored Feb 18, 2020
1 parent 21582d2 commit 5ee7f88
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -591,8 +591,6 @@ private static TextSyndicationContent ReadTextContentFromHelper(XmlReader reader
}
}
reader.MoveToElement();
string localName = reader.LocalName;
string nameSpace = reader.NamespaceURI;
string val = (kind == TextSyndicationContentKind.XHtml) ? reader.ReadInnerXml() : reader.ReadElementString();
TextSyndicationContent result = new TextSyndicationContent(val, kind);
if (attrs != null)
Expand Down

0 comments on commit 5ee7f88

Please sign in to comment.