[Monodevelop-patches-list] r2762 - trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Codons

Lluis Sanchez <lluis@ximian.com> lluis at mono-cvs.ximian.com
Thu Aug 18 15:07:07 EDT 2005


Author: lluis
Date: 2005-08-18 15:07:07 -0400 (Thu, 18 Aug 2005)
New Revision: 2762

Removed:
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Codons/StockIconAssemblyCodon.cs
Log:
This shouldn't be here.


Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Codons/StockIconAssemblyCodon.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Codons/StockIconAssemblyCodon.cs	2005-08-18 18:45:31 UTC (rev 2761)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Codons/StockIconAssemblyCodon.cs	2005-08-18 19:07:07 UTC (rev 2762)
@@ -1,58 +0,0 @@
-//
-// StockIconAssembly.cs
-//
-// Author:
-//   Lluis Sanchez Gual
-//
-
-//
-// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-
-using System;
-using System.Collections;
-
-using MonoDevelop.Core.AddIns.Conditions;
-using MonoDevelop.Internal.Project;
-
-namespace MonoDevelop.Core.AddIns.Codons
-{
-	[CodonNameAttribute ("StockAssembly")]
-	public class StockIconAssemblyCodon : AbstractCodon
-	{
-		StockIconCodon[] icons;
-		
-		public StockIconCodon[] Icons {
-			get { return icons; }
-		}
-		
-		public override object BuildItem (object owner, ArrayList subItems, ConditionCollection conditions)
-		{
-			if (subItems != null)
-				icons = (StockIconCodon[]) subItems.ToArray (typeof(StockIconCodon));
-			else
-				icons = new StockIconCodon [0];
-			return this;
-		}
-	}
-}




More information about the Monodevelop-patches-list mailing list