Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Peterson <petersonjm1@gmail.com>2018-05-24 22:59:39 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-05-24 22:59:39 +0300
commitaaa49b7ff44a215586083b421f3fcf305cddd8df (patch)
tree3178dcdc2fea57a3004bfe302b0972a36e3fbb2e /mcs/class/System.Web
parent0c2e5133d33549d0b14f06043672b429c9e76ec5 (diff)
Remove two methods with incorrect arguments (#8860)
* Remove two methods with incorrect arguments These two methods on `IPersonalizable` don't match the .NET 4.7.1 API. In both cases the methods should take one `PersonalizableDictionary` argument, but _that_ type does not exist. Since nothing in the current class library code is using these methods, just remove them. * Bump API snapshot submodule
Diffstat (limited to 'mcs/class/System.Web')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls.WebParts/IPersonalizable.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/IPersonalizable.cs b/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/IPersonalizable.cs
index 719371ad7be..8ffea688604 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/IPersonalizable.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/IPersonalizable.cs
@@ -35,9 +35,6 @@ namespace System.Web.UI.WebControls.WebParts
{
public interface IPersonalizable
{
- void Load (IDictionary sharedState, IDictionary userState);
- void Save (IDictionary state);
-
bool IsDirty { get; }
}
}