More content refactoring (tests)

This commit is contained in:
Stephan
2017-11-15 08:53:20 +01:00
parent fcf2b27953
commit ef11fda272
108 changed files with 1803 additions and 1804 deletions

View File

@@ -1,5 +1,4 @@
using System.Linq;
using Umbraco.Core.Models.EntityBase;
using Umbraco.Core.Models.EntityBase;
namespace Umbraco.Core.Models
{
@@ -17,7 +16,7 @@ namespace Umbraco.Core.Models
/// </remarks>
public static bool IsNewEntity(this IEntity entity)
{
var dirty = (IRememberBeingDirty)entity;
var dirty = (IRememberBeingDirty) entity;
return dirty.WasPropertyDirty("Id");
}
}