Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs
deleted file mode 100644
index e9adab1673c762461a9a59815154279c9ac5c543..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using System.Diagnostics.CodeAnalysis;
-using System.Runtime.InteropServices;
-using EnvDTE;
-
-namespace Microsoft.VisualStudio.Project.Automation
-{
- /// <summary>
- /// Represents an automation object for a folder in a project
- /// </summary>
- [SuppressMessage("Microsoft.Interoperability", "CA1405:ComVisibleTypeBaseTypesShouldBeComVisible")]
- [ComVisible(true), CLSCompliant(false)]
- public class OAFolderItem : OAProjectItem<FolderNode>
- {
- #region ctors
- public OAFolderItem(OAProject project, FolderNode node)
- : base(project, node)
- {
- }
-
- #endregion
-
- #region overridden methods
- public override ProjectItems Collection
- {
- get
- {
- ProjectItems items = new OAProjectItems(this.Project, this.Node);
- return items;
- }
- }
-
- public override ProjectItems ProjectItems
- {
- get
- {
- return this.Collection;
- }
- }
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698