From a8874661f78b074d9da95df51f95b0d963bdabca Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Wed, 4 Oct 2017 10:21:13 -0400 Subject: [PATCH] Fix style: Use built-in keyword for string static method calls --- Crawl/VideoIndexer/VideoIndexer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crawl/VideoIndexer/VideoIndexer.cs b/Crawl/VideoIndexer/VideoIndexer.cs index 1eedb8f9..1906718b 100644 --- a/Crawl/VideoIndexer/VideoIndexer.cs +++ b/Crawl/VideoIndexer/VideoIndexer.cs @@ -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)) {