From 040412857ce6f5d3d301be01ae3df3d1fd837c9e Mon Sep 17 00:00:00 2001 From: BlueWall Date: Fri, 20 Apr 2012 14:13:32 -0400 Subject: [PATCH] Undo the disposable --- OpenSim/Services/IntegrationService/IntegrationServiceBase.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs index d76c5b6906..ae7587dcd4 100644 --- a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs +++ b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs @@ -44,14 +44,13 @@ using Ux = OpenSim.Services.IntegrationService.IUtils; namespace OpenSim.Services.IntegrationService { [TypeExtensionPoint (Path="/OpenSim/IntegrationService", Name="IntegrationService")] - public interface IntegrationPlugin: IDisposable + public interface IntegrationPlugin { void Init(IConfigSource PluginConfig, IHttpServer server, ServiceBase service); void Unload(); string Name { get; } string ConfigName { get; } string DefaultConfig { get; } - void Dispose(); } // Hide the nasty stuff in here, let the IntegrationService be clean for