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.CoreLib
parente828d3204da3559ab4763490bbdb9c57cb5ce04f (diff)
Delete unnecessary global:: prefixes
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/src/Internal/DeveloperExperience/DeveloperExperience.cs12
-rw-r--r--src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Internal.cs6
-rw-r--r--src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.Events.cs8
-rw-r--r--src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.cs10
-rw-r--r--src/System.Private.CoreLib/src/System/Reflection/MissingMetadataException.cs2
-rw-r--r--src/System.Private.CoreLib/src/System/Reflection/TargetInvocationException.cs2
-rw-r--r--src/System.Private.CoreLib/src/System/Reflection/TargetParameterCountException.cs2
7 files changed, 21 insertions, 21 deletions
diff --git a/src/System.Private.CoreLib/src/Internal/DeveloperExperience/DeveloperExperience.cs b/src/System.Private.CoreLib/src/Internal/DeveloperExperience/DeveloperExperience.cs
index 86938a07a..6e754c28f 100644
--- a/src/System.Private.CoreLib/src/Internal/DeveloperExperience/DeveloperExperience.cs
+++ b/src/System.Private.CoreLib/src/Internal/DeveloperExperience/DeveloperExperience.cs
@@ -1,13 +1,13 @@
// 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.Runtime;
-using global::System.Diagnostics;
-using global::System.Diagnostics.Contracts;
+using System;
+using System.Text;
+using System.Runtime;
+using System.Diagnostics;
+using System.Diagnostics.Contracts;
-using global::Internal.Runtime.Augments;
+using Internal.Runtime.Augments;
namespace Internal.DeveloperExperience
{
diff --git a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Internal.cs b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Internal.cs
index 25a72e2ff..651790e7e 100644
--- a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Internal.cs
+++ b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Internal.cs
@@ -1,10 +1,10 @@
// 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;
-using ReflectionTraceCallbacks = global::Internal.Runtime.Augments.ReflectionTraceCallbacks;
+using ReflectionTraceCallbacks = Internal.Runtime.Augments.ReflectionTraceCallbacks;
namespace Internal.Reflection.Tracing
{
diff --git a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.Events.cs b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.Events.cs
index b3ad85985..7547e380c 100644
--- a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.Events.cs
+++ b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.Events.cs
@@ -1,11 +1,11 @@
// 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;
-using ReflectionTraceCallbacks = global::Internal.Runtime.Augments.ReflectionTraceCallbacks;
+using ReflectionTraceCallbacks = Internal.Runtime.Augments.ReflectionTraceCallbacks;
namespace Internal.Reflection.Tracing
{
diff --git a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.cs b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.cs
index 8002c68f3..0f3205335 100644
--- a/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.cs
+++ b/src/System.Private.CoreLib/src/Internal/Reflection/Tracing/ReflectionTrace.Public.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.Diagnostics;
-using global::System.Collections.Generic;
-using global::System.Runtime.CompilerServices;
+using System;
+using System.Diagnostics;
+using System.Collections.Generic;
+using System.Runtime.CompilerServices;
-using ReflectionTraceCallbacks = global::Internal.Runtime.Augments.ReflectionTraceCallbacks;
+using ReflectionTraceCallbacks = Internal.Runtime.Augments.ReflectionTraceCallbacks;
namespace Internal.Reflection.Tracing
{
diff --git a/src/System.Private.CoreLib/src/System/Reflection/MissingMetadataException.cs b/src/System.Private.CoreLib/src/System/Reflection/MissingMetadataException.cs
index 332e69440..25bd55aa3 100644
--- a/src/System.Private.CoreLib/src/System/Reflection/MissingMetadataException.cs
+++ b/src/System.Private.CoreLib/src/System/Reflection/MissingMetadataException.cs
@@ -7,7 +7,7 @@
**
==============================================================*/
-using global::System;
+using System;
namespace System.Reflection
{
diff --git a/src/System.Private.CoreLib/src/System/Reflection/TargetInvocationException.cs b/src/System.Private.CoreLib/src/System/Reflection/TargetInvocationException.cs
index edbeb4b03..5c3701fd9 100644
--- a/src/System.Private.CoreLib/src/System/Reflection/TargetInvocationException.cs
+++ b/src/System.Private.CoreLib/src/System/Reflection/TargetInvocationException.cs
@@ -13,7 +13,7 @@
//
//
-using global::System;
+using System;
namespace System.Reflection
{
diff --git a/src/System.Private.CoreLib/src/System/Reflection/TargetParameterCountException.cs b/src/System.Private.CoreLib/src/System/Reflection/TargetParameterCountException.cs
index 6b96c178d..cfff42cd3 100644
--- a/src/System.Private.CoreLib/src/System/Reflection/TargetParameterCountException.cs
+++ b/src/System.Private.CoreLib/src/System/Reflection/TargetParameterCountException.cs
@@ -7,7 +7,7 @@
**
==============================================================*/
-using global::System;
+using System;
namespace System.Reflection
{