summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/EventHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/shared/System/EventHandler.cs')
-rw-r--r--src/mscorlib/shared/System/EventHandler.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mscorlib/shared/System/EventHandler.cs b/src/mscorlib/shared/System/EventHandler.cs
index e6923cf637..3d1cbfef26 100644
--- a/src/mscorlib/shared/System/EventHandler.cs
+++ b/src/mscorlib/shared/System/EventHandler.cs
@@ -6,9 +6,7 @@ using System;
namespace System
{
- [Serializable]
public delegate void EventHandler(Object sender, EventArgs e);
- [Serializable]
public delegate void EventHandler<TEventArgs>(Object sender, TEventArgs e); // Removed TEventArgs constraint post-.NET 4
}