diff --git a/src/Umbraco.Web/Models/PublishedContentBase.cs b/src/Umbraco.Web/Models/PublishedContentBase.cs
index 032a1a6fda..4bdea8b920 100644
--- a/src/Umbraco.Web/Models/PublishedContentBase.cs
+++ b/src/Umbraco.Web/Models/PublishedContentBase.cs
@@ -55,7 +55,6 @@ namespace Umbraco.Web.Models
///
[Obsolete("Use CreatorName(IUserService) extension instead")]
-
public abstract string CreatorName { get; }
///
@@ -66,7 +65,6 @@ namespace Umbraco.Web.Models
///
[Obsolete("Use WriterName(IUserService) extension instead")]
-
public abstract string WriterName { get; }
///
diff --git a/src/Umbraco.Web/PublishedCache/NuCache/PublishedContent.cs b/src/Umbraco.Web/PublishedCache/NuCache/PublishedContent.cs
index c84d49d685..d80affbfa9 100644
--- a/src/Umbraco.Web/PublishedCache/NuCache/PublishedContent.cs
+++ b/src/Umbraco.Web/PublishedCache/NuCache/PublishedContent.cs
@@ -164,7 +164,6 @@ namespace Umbraco.Web.PublishedCache.NuCache
///
[Obsolete("Use CreatorName(IUserService) extension instead")]
-
public override string CreatorName => GetProfileNameById(_contentNode.CreatorId);
///
@@ -175,7 +174,6 @@ namespace Umbraco.Web.PublishedCache.NuCache
///
[Obsolete("Use WriterName(IUserService) extension instead")]
-
public override string WriterName => GetProfileNameById(ContentData.WriterId);
///
diff --git a/src/Umbraco.Web/PublishedCache/PublishedMember.cs b/src/Umbraco.Web/PublishedCache/PublishedMember.cs
index 30e5882ea8..e7cdb65f2e 100644
--- a/src/Umbraco.Web/PublishedCache/PublishedMember.cs
+++ b/src/Umbraco.Web/PublishedCache/PublishedMember.cs
@@ -141,12 +141,10 @@ namespace Umbraco.Web.PublishedCache
// TODO: ARGH! need to fix this - this is not good because it uses ApplicationContext.Current
[Obsolete("Use WriterName(IUserService) extension instead")]
-
public override string WriterName => _member.GetCreatorProfile().Name;
// TODO: ARGH! need to fix this - this is not good because it uses ApplicationContext.Current
[Obsolete("Use CreatorName(IUserService) extension instead")]
-
public override string CreatorName => _member.GetCreatorProfile().Name;
public override int WriterId => _member.CreatorId;