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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-12-03 03:54:09 +0300
committerJan Kotas <jkotas@microsoft.com>2015-12-03 03:54:09 +0300
commitfe9c7754c926b6914edb842f55c12945eeb94f36 (patch)
tree2cb435a930246b0287711ea9eb81032789f103fd /src/System.Private.StackTraceGenerator
parente828d3204da3559ab4763490bbdb9c57cb5ce04f (diff)
Delete unnecessary global:: prefixes
Diffstat (limited to 'src/System.Private.StackTraceGenerator')
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaEnums.cs4
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaInterfaces.cs6
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs6
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/Dia/StdCall.cs6
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/ComInterface.cs4
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/MarshalExtensions.cs6
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/StdCall.cs6
-rw-r--r--src/System.Private.StackTraceGenerator/src/Internal/StackTraceGenerator/StackTraceGenerator.cs12
8 files changed, 25 insertions, 25 deletions
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaEnums.cs b/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaEnums.cs
index 67bc5af7f..560551347 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaEnums.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaEnums.cs
@@ -1,8 +1,8 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
+using System;
+using System.Diagnostics;
namespace Internal.StackGenerator.Dia
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaInterfaces.cs b/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaInterfaces.cs
index abf8c9c31..febad106b 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaInterfaces.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/Dia/DiaInterfaces.cs
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
-using global::Internal.LightweightInterop;
+using System;
+using System.Diagnostics;
+using Internal.LightweightInterop;
namespace Internal.StackGenerator.Dia
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs b/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
index 21fb5d7fa..97aa4453f 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/Dia/Guids.cs
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
-using global::System.Collections.Generic;
+using System;
+using System.Diagnostics;
+using System.Collections.Generic;
namespace Internal.StackGenerator.Dia
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/Dia/StdCall.cs b/src/System.Private.StackTraceGenerator/src/Internal/Dia/StdCall.cs
index 6c2dc1e64..2ec9082b6 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/Dia/StdCall.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/Dia/StdCall.cs
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
-using global::System.Runtime.InteropServices;
+using System;
+using System.Diagnostics;
+using System.Runtime.InteropServices;
namespace Internal.StackGenerator.Dia
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/ComInterface.cs b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/ComInterface.cs
index e0f1d2982..c3e957440 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/ComInterface.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/ComInterface.cs
@@ -1,8 +1,8 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
+using System;
+using System.Diagnostics;
namespace Internal.LightweightInterop
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/MarshalExtensions.cs b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/MarshalExtensions.cs
index 4d2b7030c..fde91e399 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/MarshalExtensions.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/MarshalExtensions.cs
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
-using global::System.Runtime.InteropServices;
+using System;
+using System.Diagnostics;
+using System.Runtime.InteropServices;
namespace Internal.LightweightInterop
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/StdCall.cs b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/StdCall.cs
index 7d2f18ddc..0661b5804 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/StdCall.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/LightweightInterop/StdCall.cs
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Diagnostics;
-using global::System.Runtime.InteropServices;
+using System;
+using System.Diagnostics;
+using System.Runtime.InteropServices;
namespace Internal.LightweightInterop
{
diff --git a/src/System.Private.StackTraceGenerator/src/Internal/StackTraceGenerator/StackTraceGenerator.cs b/src/System.Private.StackTraceGenerator/src/Internal/StackTraceGenerator/StackTraceGenerator.cs
index ab91659d4..c35f6aaea 100644
--- a/src/System.Private.StackTraceGenerator/src/Internal/StackTraceGenerator/StackTraceGenerator.cs
+++ b/src/System.Private.StackTraceGenerator/src/Internal/StackTraceGenerator/StackTraceGenerator.cs
@@ -1,12 +1,12 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-using global::System;
-using global::System.Text;
-using global::System.Diagnostics;
-using global::System.Runtime.InteropServices;
-using global::Internal.Runtime.Augments;
-using global::Internal.StackGenerator.Dia;
+using System;
+using System.Text;
+using System.Diagnostics;
+using System.Runtime.InteropServices;
+using Internal.Runtime.Augments;
+using Internal.StackGenerator.Dia;
namespace Internal.StackTraceGenerator
{