Skip to content

Commit 7447a2e

Browse files
committed
Remove obsolete method which has been obsolete since 2010-12-26 11:53:09, and which is not even used by class.
1 parent c24de5a commit 7447a2e

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/FluentNHibernate/Mapping/FilterPart.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,6 @@ public string Name
3939
get { return filterName; }
4040
}
4141

42-
[Obsolete("Do not call this method. Implementation detail mistakenly made public. Will be made private in next version.")]
43-
public void Write(XmlElement classElement, IMappingModelVisitor visitor)
44-
{
45-
XmlElement filterElement = classElement.AddElement("filter");
46-
filterElement.SetAttribute("name", Name);
47-
if (!string.IsNullOrEmpty(Condition))
48-
{
49-
filterElement.SetAttribute("condition", Condition);
50-
}
51-
}
52-
5342
public override bool Equals(object obj)
5443
{
5544
if (ReferenceEquals(null, obj)) return false;

0 commit comments

Comments
 (0)