summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/AsyncCallback.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/AsyncCallback.cs')
-rw-r--r--src/mscorlib/src/System/AsyncCallback.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mscorlib/src/System/AsyncCallback.cs b/src/mscorlib/src/System/AsyncCallback.cs
index 69a03812e1..5c49535cff 100644
--- a/src/mscorlib/src/System/AsyncCallback.cs
+++ b/src/mscorlib/src/System/AsyncCallback.cs
@@ -9,9 +9,9 @@
** Purpose: Type of callback for async operations
**
===========================================================*/
-namespace System {
+
+namespace System
+{
[Serializable]
- [System.Runtime.InteropServices.ComVisible(true)]
public delegate void AsyncCallback(IAsyncResult ar);
-
}