Fix style: Use built-in keyword for string static method calls

This commit is contained in:
Jacob Alber 2017-10-04 10:21:13 -04:00
Родитель 9d1ea67f17
Коммит a8874661f7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -178,7 +178,7 @@ namespace Microsoft.DecisionService.Crawl
// The GetVideoIndexerBreakdownAsync call can, if the underlying call to VideoIndexer GetBreakdown fails - but the
// call to VideoIndexer SearchBreakdown succeeds, return a BlobContent with an empty Value, and a short "expires".
// Treat that as the same as not getting a VideoIndexer response.
if (breakdownContent == null || String.IsNullOrWhiteSpace(breakdownContent.Value))
if (breakdownContent == null || string.IsNullOrWhiteSpace(breakdownContent.Value))
{
if (string.IsNullOrEmpty(reqBody.Video))
{