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:
authorAtsushi Eno <atsushieno@gmail.com>2004-10-22 01:10:17 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-10-22 01:10:17 +0400
commitac1b99b3223d9bfa66c82513e5a3c7488702dccc (patch)
tree30e31b7b1ab1895b2e8845fc3816d01ff41ff022 /mcs/class/Novell.Directory.Ldap
parent7b99cd2566faf34c8793cd16b44eb21411ca2eb8 (diff)
2004-10-21 Atsushi Enomoto <atsushi@ximian.com>
Let's just fix windows build in spite of breakage on not-maintained public API. svn path=/trunk/mcs/; revision=35222
Diffstat (limited to 'mcs/class/Novell.Directory.Ldap')
-rw-r--r--mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Utilclass/RespExtensionSet.cs3
-rwxr-xr-xmcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/LdapAttributeSet.cs2
-rwxr-xr-xmcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/SupportClass.cs19
3 files changed, 13 insertions, 11 deletions
diff --git a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Utilclass/RespExtensionSet.cs b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Utilclass/RespExtensionSet.cs
index 0b0b74d0379..b6411627b8a 100644
--- a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Utilclass/RespExtensionSet.cs
+++ b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Utilclass/RespExtensionSet.cs
@@ -29,6 +29,7 @@
// (C) 2003 Novell, Inc (http://www.novell.com)
//
using System;
+
namespace Novell.Directory.Ldap.Utilclass
{
@@ -36,7 +37,7 @@ namespace Novell.Directory.Ldap.Utilclass
/// so that it can be used to maintain a list of currently
/// registered extended responses.
/// </summary>
- public class RespExtensionSet:SupportClass.AbstractSetSupport
+ public class RespExtensionSet:AbstractSetSupport
{
/// <summary> Returns the number of extensions in this set.
///
diff --git a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/LdapAttributeSet.cs b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/LdapAttributeSet.cs
index ddb8216d192..2c7af7e2d40 100755
--- a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/LdapAttributeSet.cs
+++ b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/LdapAttributeSet.cs
@@ -52,7 +52,7 @@ namespace Novell.Directory.Ldap
/// </seealso>
/// <seealso cref="LdapEntry">
/// </seealso>
- public class LdapAttributeSet:SupportClass.AbstractSetSupport, System.ICloneable//, SupportClass.SetSupport
+ public class LdapAttributeSet:AbstractSetSupport, System.ICloneable//, SupportClass.SetSupport
{
/// <summary> Returns the number of attributes in this set.
///
diff --git a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/SupportClass.cs b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/SupportClass.cs
index 2fe88cf1e6c..27f8dc3fcdb 100755
--- a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/SupportClass.cs
+++ b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/SupportClass.cs
@@ -1631,15 +1631,6 @@ using System;
/// <summary>
/// This class manages different operation with collections.
/// </summary>
- public class AbstractSetSupport : SetSupport
- {
- /// <summary>
- /// The constructor with no parameters to create an abstract set.
- /// </summary>
- public AbstractSetSupport()
- {
- }
- }
/*******************************/
@@ -2164,3 +2155,13 @@ using System;
}
}
+
+ public class AbstractSetSupport : SupportClass.SetSupport
+ {
+ /// <summary>
+ /// The constructor with no parameters to create an abstract set.
+ /// </summary>
+ public AbstractSetSupport()
+ {
+ }
+ }