diff --git a/src/Moq/Mock.cs b/src/Moq/Mock.cs index 3ee6ec5d8..958494f17 100644 --- a/src/Moq/Mock.cs +++ b/src/Moq/Mock.cs @@ -14,16 +14,8 @@ using Moq.Async; using Moq.Properties; -[assembly: Sponsorable(60)] - namespace Moq { - class SponsorableAttribute : Attribute - { - public SponsorableAttribute() { } - public SponsorableAttribute(int days) { } - } - /// /// Base class for mocks and static helper class with methods that apply to mocked objects, /// such as to retrieve a from an object instance. @@ -40,13 +32,6 @@ protected Mock() { } - /// - /// If you're a sponsor, you can see this API! - /// - [Sponsorable] - [EditorBrowsable(EditorBrowsableState.Never)] - public static bool IsSponsor => true; - /// /// Retrieves the mock object for the given object instance. ///