[f-spot] Drop parameterized Core constructor.



commit 8c374b9deec8ada40e66e1c4693affac392e08c1
Author: Ruben Vermeersch <ruben savanne be>
Date:   Mon Jun 15 01:43:05 2009 +0200

    Drop parameterized Core constructor.
    
    I'm not sure what this was supposed to do, but it doesn't do anything
    anyway.

 src/Core.cs |    7 +------
 src/main.cs |    2 +-
 2 files changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/src/Core.cs b/src/Core.cs
index 8a1a87b..0357b35 100644
--- a/src/Core.cs
+++ b/src/Core.cs
@@ -29,14 +29,9 @@ namespace FSpot {
 		const string ServicePath = "org.gnome.FSpot";
 		static ObjectPath CorePath = new ObjectPath ("/org/gnome/FSpot/Core");
 
-		public Core () : this (false)
-		{
-		}
-
-		public Core (bool nodb)
+		public Core ()
 		{
 			toplevels = new System.Collections.ArrayList ();
-			
 		}
 
 		public static Db Database {
diff --git a/src/main.cs b/src/main.cs
index 386430b..98d9537 100644
--- a/src/main.cs
+++ b/src/main.cs
@@ -243,7 +243,7 @@ namespace FSpot
 							};
 						} catch {}
 
-						core = new Core (view);
+						core = new Core ();
 						core.RegisterServer ();
 
 						empty = view || Core.Database.Empty;



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