[ http://jira.nhibernate.org/browse/NH-730?page=all ]
Sergey Koshcheyev closed NH-730:
--------------------------------
Resolution: Fixed
> make the bag Attribute protected instead of private in PersistentBag.cs
> -----------------------------------------------------------------------
>
> Key: NH-730
> URL: http://jira.nhibernate.org/browse/NH-730
> Project: NHibernate
> Type: Improvement
> Components: Core
> Versions: 1.2.0.Beta1
> Reporter: Franz Meier
> Priority: Trivial
> Fix For: 1.2.0.CR1
>
> File PersistentBag.cs
> Original:
> public class PersistentBag : AbstractPersistentCollection, IList
> {
> private IList bag;
> should be:
> public class PersistentBag : AbstractPersistentCollection, IList
> {
> protected IList bag;
> The big problem is, that if you create you own collections,
> you need to access the underlying bag!
> The PersistentSet is correct!
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.nhibernate.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|