banshee r4614 - in trunk/banshee: . src/Libraries/Migo/Migo.Syndication



Author: gburt
Date: Thu Sep 25 15:41:07 2008
New Revision: 4614
URL: http://svn.gnome.org/viewvc/banshee?rev=4614&view=rev

Log:
2008-09-25  Marek Habersack  <mhabersack novell com>

	* src/Libraries/Migo/Migo.Syndication/MigoModelProvider.cs: newer
	versions of gmcs enforce ordering of 'where' constraints from less
	concrete to more concrete types (i.e. interface constraints must
	go last).



Modified:
   trunk/banshee/ChangeLog
   trunk/banshee/src/Libraries/Migo/Migo.Syndication/MigoModelProvider.cs

Modified: trunk/banshee/src/Libraries/Migo/Migo.Syndication/MigoModelProvider.cs
==============================================================================
--- trunk/banshee/src/Libraries/Migo/Migo.Syndication/MigoModelProvider.cs	(original)
+++ trunk/banshee/src/Libraries/Migo/Migo.Syndication/MigoModelProvider.cs	Thu Sep 25 15:41:07 2008
@@ -37,7 +37,7 @@
 {
     // Caches all results retrieved from the database, such that any subsequent retrieval will
     // return the same instance.
-    public class MigoModelProvider<T> : SqliteModelProvider<T> where T : ICacheableItem, MigoItem<T>, new()
+    public class MigoModelProvider<T> : SqliteModelProvider<T> where T : MigoItem<T>, ICacheableItem, new()
     {
         private Dictionary<long, T> full_cache = new Dictionary<long, T> ();
         



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]