Remove redundant verbatim string prefixes

This commit is contained in:
Stepan Goremykin
2023-10-08 00:15:38 +02:00
parent 508c48a8ba
commit 0870af330d
21 changed files with 306 additions and 306 deletions

View File

@@ -159,7 +159,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
// Find last closing Tag
// Need to do this in two steps to account for random > characters after the closing xml
var index = xml.LastIndexOf(@"</", StringComparison.Ordinal);
var index = xml.LastIndexOf("</", StringComparison.Ordinal);
// If closing tag exists, move to end of Tag
if (index != -1)