diff --git a/src/Umbraco.Core/Attempt.cs b/src/Umbraco.Core/Attempt.cs
index 927f68d7a4..c184c5670a 100644
--- a/src/Umbraco.Core/Attempt.cs
+++ b/src/Umbraco.Core/Attempt.cs
@@ -41,7 +41,7 @@ namespace Umbraco.Core
///
/// Represents an unsuccessful parse operation
///
- public static readonly Attempt False;
+ public static readonly Attempt False = new Attempt(false, default(T));
///
/// Initializes a new instance of the struct.
diff --git a/src/Umbraco.Web/IPublishedStore.cs b/src/Umbraco.Web/IPublishedStore.cs
index 0eae294911..acc41a9d0a 100644
--- a/src/Umbraco.Web/IPublishedStore.cs
+++ b/src/Umbraco.Web/IPublishedStore.cs
@@ -6,7 +6,7 @@ namespace Umbraco.Web
///
/// Defines the methods for published documents
///
- public interface IPublishedStore
+ internal interface IPublishedStore
{
IPublishedContent GetDocumentById(UmbracoContext umbracoContext, int nodeId);
IEnumerable GetRootDocuments(UmbracoContext umbracoContext);