Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/TextData/Differencing/ITokenizedStringList.cs')
-rw-r--r--src/Text/Def/TextData/Differencing/ITokenizedStringList.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Def/TextData/Differencing/ITokenizedStringList.cs b/src/Text/Def/TextData/Differencing/ITokenizedStringList.cs
index 3c7dca7..d92839d 100644
--- a/src/Text/Def/TextData/Differencing/ITokenizedStringList.cs
+++ b/src/Text/Def/TextData/Differencing/ITokenizedStringList.cs
@@ -7,6 +7,7 @@ using System.Collections.Generic;
namespace Microsoft.VisualStudio.Text.Differencing
{
+#pragma warning disable CA1710 // Identifiers should have correct suffix
/// <summary>
/// A tokenized representation of a string into abutting and non-overlapping segments.
/// </summary>
@@ -17,6 +18,7 @@ namespace Microsoft.VisualStudio.Text.Differencing
/// as ILists.</para>
/// </remarks>
public interface ITokenizedStringList : IList<string>
+#pragma warning restore CA1710 // Identifiers should have correct suffix
{
/// <summary>
/// The original string that was tokenized.
@@ -40,4 +42,4 @@ namespace Microsoft.VisualStudio.Text.Differencing
/// <returns>The span mapped onto the original list.</returns>
Span GetSpanInOriginal(Span span);
}
-} \ No newline at end of file
+}