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/Common
parente828d3204da3559ab4763490bbdb9c57cb5ce04f (diff)
Delete unnecessary global:: prefixes
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/src/System/Runtime/CompilerServices/DeveloperExperienceModeOnlyAttribute.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/src/System/Runtime/CompilerServices/DeveloperExperienceModeOnlyAttribute.cs b/src/Common/src/System/Runtime/CompilerServices/DeveloperExperienceModeOnlyAttribute.cs
index 9894ce0cf..d6d64aab2 100644
--- a/src/Common/src/System/Runtime/CompilerServices/DeveloperExperienceModeOnlyAttribute.cs
+++ b/src/Common/src/System/Runtime/CompilerServices/DeveloperExperienceModeOnlyAttribute.cs
@@ -1,7 +1,7 @@
// 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 System;
namespace System.Runtime.CompilerServices
{