From 0713f12ba6abfdf5c23b2b86afb88568e9f392dd Mon Sep 17 00:00:00 2001 From: Shannon Date: Fri, 8 Sep 2017 12:02:20 +1000 Subject: [PATCH] makes new classes internal --- src/Umbraco.Core/Persistence/LocalDb.cs | 2 +- src/Umbraco.Web/Suspendable.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Persistence/LocalDb.cs b/src/Umbraco.Core/Persistence/LocalDb.cs index 084122ac3a..f706979e17 100644 --- a/src/Umbraco.Core/Persistence/LocalDb.cs +++ b/src/Umbraco.Core/Persistence/LocalDb.cs @@ -20,7 +20,7 @@ namespace Umbraco.Core.Persistence /// Studio which can be used to connect to LocalDB databases. /// See also https://github.com/ritterim/automation-sql which is a somewhat simpler version of this. /// - public class LocalDb + internal class LocalDb { private int _version; private bool _hasVersion; diff --git a/src/Umbraco.Web/Suspendable.cs b/src/Umbraco.Web/Suspendable.cs index 29e8c3a540..db4ef53485 100644 --- a/src/Umbraco.Web/Suspendable.cs +++ b/src/Umbraco.Web/Suspendable.cs @@ -7,7 +7,7 @@ using Umbraco.Web.Cache; namespace Umbraco.Web { - public static class Suspendable + internal static class Suspendable { public static class PageCacheRefresher {