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/Impl/Outlining/OutliningManagerService.cs')
-rw-r--r--src/Text/Impl/Outlining/OutliningManagerService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Impl/Outlining/OutliningManagerService.cs b/src/Text/Impl/Outlining/OutliningManagerService.cs
index 5e8a795..081672e 100644
--- a/src/Text/Impl/Outlining/OutliningManagerService.cs
+++ b/src/Text/Impl/Outlining/OutliningManagerService.cs
@@ -28,7 +28,7 @@ namespace Microsoft.VisualStudio.Text.Outlining
public IOutliningManager GetOutliningManager(ITextView textView)
{
if (textView == null)
- throw new ArgumentNullException("textView");
+ throw new ArgumentNullException(nameof(textView));
if (!textView.Roles.Contains(PredefinedTextViewRoles.Structured))
return null;