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:
Diffstat (limited to 'mcs/class/System/System.IO/FileSystemEventHandler.cs')
-rw-r--r--mcs/class/System/System.IO/FileSystemEventHandler.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcs/class/System/System.IO/FileSystemEventHandler.cs b/mcs/class/System/System.IO/FileSystemEventHandler.cs
index f91b5d2a32a..9f453f325e5 100644
--- a/mcs/class/System/System.IO/FileSystemEventHandler.cs
+++ b/mcs/class/System/System.IO/FileSystemEventHandler.cs
@@ -5,8 +5,7 @@
// Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002
-//
-
+// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -28,9 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-using System;
-
namespace System.IO {
- [Serializable]
+
+#if ONLY_1_1
+ [Serializable]
+#endif
public delegate void FileSystemEventHandler (object sender, FileSystemEventArgs e);
}