Removes more unused code

This commit is contained in:
Shannon
2014-11-14 17:57:44 +11:00
parent c08db70e82
commit bdcf8f8fc0
9 changed files with 7 additions and 198 deletions

View File

@@ -208,13 +208,7 @@ namespace Umbraco.Core
}
}
private void AssertIsReady()
{
if (!this.IsReady)
throw new Exception("ApplicationContext is not ready yet.");
}
private void AssertIsNotReady()
private void AssertIsNotReady()
{
if (this.IsReady)
throw new Exception("ApplicationContext has already been initialized.");