Mantis#2288. Thank you kindly, SMeans, for a patch that:

Corrects the typo of namespace Opensim.Framework to 
OpenSim.Framework in Cache.cs.
0.6.0-stable
Charles Krinke 2008-09-28 17:11:10 +00:00
parent 1cc927ad97
commit ee9033e2c7
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using OpenMetaverse; using OpenMetaverse;
namespace Opensim.Framework namespace OpenSim.Framework
{ {
// The delegate we will use for performing fetch from backing store // The delegate we will use for performing fetch from backing store
// //
@ -356,7 +356,7 @@ namespace Opensim.Framework
// Find an object in cache by delegate. // Find an object in cache by delegate.
// //
public Object Find(Predicate<Opensim.Framework.CacheItemBase> d) public Object Find(Predicate<OpenSim.Framework.CacheItemBase> d)
{ {
CacheItemBase item = m_Index.Find(d); CacheItemBase item = m_Index.Find(d);