CloneSet915


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.972class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1464
src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs
2495
src/NHibernate/Collection/PersistentIdentifierBag.cs
Clone Instance
1
Line Count
4
Source Line
64
Source File
src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs

                public override void BeforeInitialize(ICollectionPersister persister, int anticipatedSize)
                {
                        identifiers = anticipatedSize <= 0 ? new Dictionary<int, object> (): new Dictionary<int, object> (anticipatedSize + 1);
                        InternalValues = anticipatedSize <= 0 ? new List<T> (): new List<T> (anticipatedSize);
                }



Clone Instance
2
Line Count
4
Source Line
95
Source File
src/NHibernate/Collection/PersistentIdentifierBag.cs

                public override void BeforeInitialize(ICollectionPersister persister, int anticipatedSize)
                {
                        identifiers = anticipatedSize <= 0 ? new Dictionary<int, object> (): new Dictionary<int, object> (anticipatedSize + 1);
                        values = anticipatedSize <= 0 ? new List<object> (): new List<object> (anticipatedSize);
                }



Clone AbstractionParameter Count: 2Parameter Bindings

public override void BeforeInitialize(ICollectionPersister persister, int anticipatedSize)
{
   identifiers = anticipatedSize <= 0 ?
                 new Dictionary<int, object> (): new Dictionary<int, object> (anticipatedSize + 1);
    [[#variable65e68f60]]= anticipatedSize <= 0 ?
                           new List< [[#variable65e68f00]]> (): new List< [[#variable65e68f00]]> (anticipatedSize);
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#65e68f60]]
values 
12[[#65e68f60]]
InternalValues 
21[[#65e68f00]]
object 
22[[#65e68f00]]
T