Skip to content

Commit 2c34e42

Browse files
committed
Minor
SVN: trunk@3047
1 parent 9e4257c commit 2c34e42

6 files changed

+2
-11
lines changed

src/NHibernate/Cfg/ConfigurationSchema/ClassCacheConfiguration.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using System;
2-
using System.Xml;
32
using System.Xml.XPath;
4-
using System.ComponentModel;
53

64
namespace NHibernate.Cfg.ConfigurationSchema
75
{
@@ -138,7 +136,7 @@ public string Class
138136
/// <summary>
139137
/// The cache region.
140138
/// </summary>
141-
/// <remarks>If null or empty the <see cref="P:ClassCacheConfiguration.Class"/> is used during configuration.</remarks>
139+
/// <remarks>If null or empty the <see cref="ClassCacheConfiguration.Class"/> is used during configuration.</remarks>
142140
public string Region
143141
{
144142
get { return region; }

src/NHibernate/Cfg/ConfigurationSchema/CollectionCacheConfiguration.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Xml;
32
using System.Xml.XPath;
43

54
namespace NHibernate.Cfg.ConfigurationSchema
@@ -78,7 +77,7 @@ public string Collection
7877
/// <summary>
7978
/// The cache region.
8079
/// </summary>
81-
/// <remarks>If null or empty the <see cref="P:CollectionCacheConfiguration.Collection"/> is used during configuration.</remarks>
80+
/// <remarks>If null or empty the <see cref="CollectionCacheConfiguration.Collection"/> is used during configuration.</remarks>
8281
public string Region
8382
{
8483
get { return region; }

src/NHibernate/Cfg/ConfigurationSchema/EventConfiguration.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Xml;
43
using System.Xml.XPath;
54
using NHibernate.Event;
65

src/NHibernate/Cfg/ConfigurationSchema/ListenerConfiguration.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Xml;
32
using System.Xml.XPath;
43
using NHibernate.Event;
54

src/NHibernate/Cfg/ConfigurationSchema/MappingConfiguration.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Xml;
42
using System.Xml.XPath;
53

64
namespace NHibernate.Cfg.ConfigurationSchema

src/NHibernate/Cfg/ConfigurationSchema/SessionFactoryConfiguration.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Xml;
43
using System.Xml.XPath;
5-
using log4net;
64

75
namespace NHibernate.Cfg.ConfigurationSchema
86
{

0 commit comments

Comments
 (0)