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:
authorKirill Osenkov <KirillOsenkov@users.noreply.github.com>2017-10-10 00:26:15 +0300
committerGitHub <noreply@github.com>2017-10-10 00:26:15 +0300
commitdf8e082f28c1333a8894245dc4b900ede15f25b2 (patch)
tree379d7cc53b5284029adf018b27d57b22a5a6f79b /src/Text/Def/TextLogic/EditorOptions
parent60fcd5aa5a6c71a8a6c10cd3530a4b5e8878939e (diff)
Add/update copyright headers and remove unused usings. (#4)
Diffstat (limited to 'src/Text/Def/TextLogic/EditorOptions')
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/DefaultOptions.cs6
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/DeferCreationAttribute.cs7
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/EditorOptionChangedEventArgs.cs8
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/EditorOptionDefinition.cs6
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/EditorOptionKey.cs10
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/IEditorOptions.cs8
-rw-r--r--src/Text/Def/TextLogic/EditorOptions/IEditorOptionsFactoryService.cs9
7 files changed, 30 insertions, 24 deletions
diff --git a/src/Text/Def/TextLogic/EditorOptions/DefaultOptions.cs b/src/Text/Def/TextLogic/EditorOptions/DefaultOptions.cs
index 6fffe2e..991f01c 100644
--- a/src/Text/Def/TextLogic/EditorOptions/DefaultOptions.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/DefaultOptions.cs
@@ -1,4 +1,8 @@
-using System;
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
+using System;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.Utilities;
diff --git a/src/Text/Def/TextLogic/EditorOptions/DeferCreationAttribute.cs b/src/Text/Def/TextLogic/EditorOptions/DeferCreationAttribute.cs
index 77bde55..37ae443 100644
--- a/src/Text/Def/TextLogic/EditorOptions/DeferCreationAttribute.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/DeferCreationAttribute.cs
@@ -1,6 +1,7 @@
-// ****************************************************************************
-// Copyright (C) Microsoft Corporation. All Rights Reserved.
-// ****************************************************************************
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
using System;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.Utilities;
diff --git a/src/Text/Def/TextLogic/EditorOptions/EditorOptionChangedEventArgs.cs b/src/Text/Def/TextLogic/EditorOptions/EditorOptionChangedEventArgs.cs
index dcdbbda..8508f8c 100644
--- a/src/Text/Def/TextLogic/EditorOptions/EditorOptionChangedEventArgs.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/EditorOptionChangedEventArgs.cs
@@ -1,6 +1,8 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
+using System;
namespace Microsoft.VisualStudio.Text.Editor
{
diff --git a/src/Text/Def/TextLogic/EditorOptions/EditorOptionDefinition.cs b/src/Text/Def/TextLogic/EditorOptions/EditorOptionDefinition.cs
index 6c278bf..7894122 100644
--- a/src/Text/Def/TextLogic/EditorOptions/EditorOptionDefinition.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/EditorOptionDefinition.cs
@@ -1,6 +1,8 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
using System;
-using System.Collections.Generic;
-using System.Text;
using Microsoft.VisualStudio.Utilities;
diff --git a/src/Text/Def/TextLogic/EditorOptions/EditorOptionKey.cs b/src/Text/Def/TextLogic/EditorOptions/EditorOptionKey.cs
index aad0095..4c9f1cf 100644
--- a/src/Text/Def/TextLogic/EditorOptions/EditorOptionKey.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/EditorOptionKey.cs
@@ -1,9 +1,7 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-using Microsoft.VisualStudio.Utilities;
-
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
namespace Microsoft.VisualStudio.Text.Editor
{
/// <summary>
diff --git a/src/Text/Def/TextLogic/EditorOptions/IEditorOptions.cs b/src/Text/Def/TextLogic/EditorOptions/IEditorOptions.cs
index 4929965..88eda82 100644
--- a/src/Text/Def/TextLogic/EditorOptions/IEditorOptions.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/IEditorOptions.cs
@@ -1,10 +1,10 @@
-// Copyright (c) Microsoft Corporation
-// All rights reserved
-
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
namespace Microsoft.VisualStudio.Text.Editor
{
using System;
- using System.Collections;
using System.Collections.Generic;
/// <summary>
diff --git a/src/Text/Def/TextLogic/EditorOptions/IEditorOptionsFactoryService.cs b/src/Text/Def/TextLogic/EditorOptions/IEditorOptionsFactoryService.cs
index 81aaade..340ad44 100644
--- a/src/Text/Def/TextLogic/EditorOptions/IEditorOptionsFactoryService.cs
+++ b/src/Text/Def/TextLogic/EditorOptions/IEditorOptionsFactoryService.cs
@@ -1,10 +1,9 @@
-// Copyright (c) Microsoft Corporation
-// All rights reserved
-
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
namespace Microsoft.VisualStudio.Text.Editor
{
- using System;
- using System.ComponentModel.Composition;
using Microsoft.VisualStudio.Utilities;