From f519dc757278a083617af3d4f2db51ddeb5333c2 Mon Sep 17 00:00:00 2001 From: Andrew Casey Date: Wed, 19 Aug 2015 16:41:26 -0700 Subject: [PATCH] Remove unused file. --- src/InteractiveWindow/VisualStudio/Utils.cs | 36 ------------------- .../VisualStudioInteractiveWindow.csproj | 1 - 2 files changed, 37 deletions(-) delete mode 100644 src/InteractiveWindow/VisualStudio/Utils.cs diff --git a/src/InteractiveWindow/VisualStudio/Utils.cs b/src/InteractiveWindow/VisualStudio/Utils.cs deleted file mode 100644 index 68ae165b583..00000000000 --- a/src/InteractiveWindow/VisualStudio/Utils.cs +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.Diagnostics; - -namespace Microsoft.VisualStudio.InteractiveWindow.Shell -{ - internal static class SpecializedCollections - { - internal static class Empty - { - internal class Array - { - public static readonly T[] Instance = Array.Empty(); - } - } - - public static T[] EmptyArray() - { - return Empty.Array.Instance; - } - } - - internal static class ExceptionUtilities - { - [DebuggerDisplay("Unreachable")] - public static Exception Unreachable - { - get - { - Debug.Fail("This code path should not be reachable"); - return new InvalidOperationException(); - } - } - } -} diff --git a/src/InteractiveWindow/VisualStudio/VisualStudioInteractiveWindow.csproj b/src/InteractiveWindow/VisualStudio/VisualStudioInteractiveWindow.csproj index 2360169972f..1df72a35f58 100644 --- a/src/InteractiveWindow/VisualStudio/VisualStudioInteractiveWindow.csproj +++ b/src/InteractiveWindow/VisualStudio/VisualStudioInteractiveWindow.csproj @@ -133,7 +133,6 @@ - -- GitLab