Removed Freezing event as we won't need it

This commit is contained in:
shannon@ShandemVaio
2012-07-27 06:02:41 +06:00
parent 8082abc27a
commit 92f983a569
3 changed files with 5 additions and 30 deletions

View File

@@ -49,7 +49,7 @@ namespace Umbraco.Core.Resolving
using (new WriteLock(Lock))
{
_resolved.Add(item);
}
}
}
public void Clear()
@@ -58,7 +58,7 @@ namespace Umbraco.Core.Resolving
using (new WriteLock(Lock))
{
_resolved.Clear();
}
}
}
public void Insert(int index, TResolved item)
@@ -67,7 +67,7 @@ namespace Umbraco.Core.Resolving
using (new WriteLock(Lock))
{
_resolved.Insert(index, item);
}
}
}
}