From 94f4d2261f2314dd55a3af8e9a7b2c9e36ec513e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 2 Oct 2007 19:26:50 +0200 Subject: [PATCH] - removed old, commented debug code --- PluginDB.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/PluginDB.cs b/PluginDB.cs index cdce0f9..be5a913 100644 --- a/PluginDB.cs +++ b/PluginDB.cs @@ -76,7 +76,6 @@ namespace Eithne try { s.Message = Catalog.GetString("Inspecting ") + fn; - //Console.WriteLine(Catalog.GetString("Inspecting {0}"), fn); Assembly a = Assembly.LoadFrom(fn); foreach(Type t in a.GetTypes()) @@ -86,8 +85,6 @@ namespace Eithne IFactory f = (IFactory)Activator.CreateInstance(t); f.Initialize(); - //Console.WriteLine(Catalog.GetString("Found {0} plugin {1}"), f.Type, f.Info.Name); - switch(f.Type) { case IType.In: -- 2.11.4.GIT