diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 9dbd50ee7b..271934f372 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs @@ -87,28 +87,6 @@ namespace OpenSim.Framework.Communications.Cache } - public AssetCache(string assetServerDLLName, string assetServerURL, string assetServerKey) - { - OpenSim.Framework.Console.MainLog.Instance.Verbose("ASSETSTORAGE", "Creating Asset cache"); - _assetServer = this.LoadAssetDll(assetServerDLLName); - - - // TODO: This actually does nothing to no IAssetServer implementor. Delete? - _assetServer.SetServerInfo(assetServerURL, assetServerKey); - - - _assetServer.SetReceiver(this); - Assets = new Dictionary(); - Textures = new Dictionary(); - this._assetCacheThread = new Thread(new ThreadStart(RunAssetManager)); - this._assetCacheThread.IsBackground = true; - this._assetCacheThread.Start(); - - this.TextureSenderThread = new Thread(new ThreadStart(this.ProcessTextureSenders)); - this.TextureSenderThread.IsBackground = true; - this.TextureSenderThread.Start(); - } - /// /// /// @@ -796,4 +774,4 @@ namespace OpenSim.Framework.Communications.Cache } } } -} \ No newline at end of file +}