Browse Source

Fixing bad merge

Former-commit-id: a4c4d84856e989f4400012db0ac759b70cdb3b3e
pull/17/head
James South 13 years ago
parent
commit
e76db38c93
  1. 12
      src/ImageProcessor.Web/NET45/Caching/MemCache.cs
  2. 5
      src/ImageProcessor.Web/NET45/Properties/AssemblyInfo.cs

12
src/ImageProcessor.Web/NET45/Caching/MemCache.cs

@ -181,12 +181,8 @@ namespace ImageProcessor.Web.Caching
if (isRemoved) if (isRemoved)
{ {
<<<<<<< HEAD
CacheItems.Keys.Remove(key);
=======
string removedValue; string removedValue;
CacheItems.TryRemove(key, out removedValue); CacheItems.TryRemove(key, out removedValue);
>>>>>>> origin/dev
} }
} }
@ -233,12 +229,8 @@ namespace ImageProcessor.Web.Caching
// Loop through and clear out the dictionary of cache keys. // Loop through and clear out the dictionary of cache keys.
foreach (KeyValuePair<string, string> cacheItem in tempDictionary) foreach (KeyValuePair<string, string> cacheItem in tempDictionary)
{ {
<<<<<<< HEAD
CacheItems.Keys.Remove(cacheItem.Key);
=======
string removedValue; string removedValue;
CacheItems.TryRemove(cacheItem.Key, out removedValue); CacheItems.TryRemove(cacheItem.Key, out removedValue);
>>>>>>> origin/dev
} }
} }
} }
@ -247,8 +239,4 @@ namespace ImageProcessor.Web.Caching
} }
#endregion #endregion
} }
<<<<<<< HEAD
} }
=======
}
>>>>>>> origin/dev

5
src/ImageProcessor.Web/NET45/Properties/AssemblyInfo.cs

@ -31,11 +31,6 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
<<<<<<< HEAD
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
=======
[assembly: AssemblyVersion("3.0.0.1")] [assembly: AssemblyVersion("3.0.0.1")]
[assembly: AssemblyFileVersion("3.0.0.1")] [assembly: AssemblyFileVersion("3.0.0.1")]
>>>>>>> origin/dev

Loading…
Cancel
Save