Skip to content

Commit 6c69d5a

Browse files
committed
Fix unnecessarily specific <see> clauses in XML doc so that they work for both Iesi and BCL sets.
1 parent 69bb30a commit 6c69d5a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/NHibernate/Bytecode/ICollectionTypeFactory.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Collections;
22
using System.Collections.Generic;
3+
using Iesi.Collections.Generic;
34
using NHibernate.Type;
45

56
namespace NHibernate.Bytecode
@@ -146,7 +147,7 @@ public interface ICollectionTypeFactory
146147
CollectionType SortedSet(string role, string propertyRef, bool embedded, IComparer comparer);
147148

148149
/// <summary>
149-
/// Creates a new <see cref="CollectionType"/> for an <see cref="Iesi.Collections.Generic.ISet{T}" />.
150+
/// Creates a new <see cref="CollectionType"/> for an <see cref="ISet{T}" />.
150151
/// </summary>
151152
/// <typeparam name="T">The type of elements in the collection.</typeparam>
152153
/// <param name="role">The role the collection is in.</param>
@@ -158,7 +159,7 @@ public interface ICollectionTypeFactory
158159
CollectionType Set<T>(string role, string propertyRef, bool embedded);
159160

160161
/// <summary>
161-
/// Creates a new <see cref="CollectionType"/> for a sorted <see cref="Iesi.Collections.Generic.ISet{T}" />.
162+
/// Creates a new <see cref="CollectionType"/> for a sorted <see cref="ISet{T}" />.
162163
/// </summary>
163164
/// <typeparam name="T">The type of elements in the collection.</typeparam>
164165
/// <param name="role">The role the collection is in.</param>
@@ -171,7 +172,7 @@ public interface ICollectionTypeFactory
171172
CollectionType SortedSet<T>(string role, string propertyRef, bool embedded, IComparer<T> comparer);
172173

173174
/// <summary>
174-
/// Creates a new <see cref="CollectionType"/> for an ordered <see cref="Iesi.Collections.Generic.ISet{T}" />.
175+
/// Creates a new <see cref="CollectionType"/> for an ordered <see cref="ISet{T}" />.
175176
/// </summary>
176177
/// <typeparam name="T">The type of elements in the collection.</typeparam>
177178
/// <param name="role">The role the collection is in.</param>

src/NHibernate/Type/GenericOrderedSetType.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Collections.Generic;
23
using Iesi.Collections.Generic;
34

45
namespace NHibernate.Type

0 commit comments

Comments
 (0)