2006-11-29 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Wed, 29 Nov 2006 22:07:52 +0000 (22:07 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 29 Nov 2006 22:07:52 +0000 (22:07 -0000)
* INullableValue.cs: Removed.

svn path=/trunk/mcs/; revision=68701

mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/INullableValue.cs [deleted file]

index 6156c6a56f145ee1ee6bbd861c7160290647fc5e..2038533ee78167a7a5182535b696e637e2ea95d0 100644 (file)
@@ -1,3 +1,7 @@
+2006-11-29  Martin Baulig  <martin@ximian.com>
+
+       * INullableValue.cs: Removed.
+
 2006-11-28  Duncan Mak  <duncan@novell.com>
 
        * ArgumentNullException.cs (.ctor): Added new constructor that's
diff --git a/mcs/class/corlib/System/INullableValue.cs b/mcs/class/corlib/System/INullableValue.cs
deleted file mode 100644 (file)
index ac7e11c..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// System.INullableValue
-//
-// Carlos Alberto Cortez (carlos@unixmexico.com)
-//
-// (C) 2004 Novell, Inc.
-//
-
-//
-// Copyright (C) 2004 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
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-#if NET_2_0
-namespace System {
-       public interface INullableValue {
-
-               bool HasValue { get; }
-               object Value { get; }
-        
-       }
-}
-
-#endif