Skip to content

Commit f9a7693

Browse files
committed
NH-3807 - Clean up some namespaces.
Use System.Collections.ObjectModel.ObservableCollection instead of the now removed Remotion version.
1 parent fb844c8 commit f9a7693

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/NHibernate/Linq/Clauses/NhJoinClause.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.Collections.ObjectModel;
34
using System.Linq.Expressions;
45
using NHibernate.Linq.Visitors;
56
using Remotion.Linq.Clauses;
67
using Remotion.Linq.Clauses.Expressions;
7-
using Remotion.Linq.Collections;
88

99
namespace NHibernate.Linq.Clauses
1010
{
@@ -59,4 +59,4 @@ public override void TransformExpressions(Func<Expression, Expression> transform
5959
base.TransformExpressions(transformation);
6060
}
6161
}
62-
}
62+
}

src/NHibernate/Transaction/ITransactionFactory.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System.Collections;
2-
using System.Transactions;
3-
using NHibernate;
4-
using NHibernate.AdoNet;
52
using NHibernate.Engine;
63
using NHibernate.Engine.Transaction;
74

@@ -34,4 +31,4 @@ public interface ITransactionFactory
3431

3532
void ExecuteWorkInIsolation(ISessionImplementor session, IIsolatedWork work, bool transacted);
3633
}
37-
}
34+
}

0 commit comments

Comments
 (0)