CloneSet1566


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.957class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16317
src/NHibernate/Util/LinkedHashMap.cs
26152
src/NHibernate/Util/SequencedHashMap.cs
Clone Instance
1
Line Count
6
Source Line
317
Source File
src/NHibernate/Util/LinkedHashMap.cs

                #endregion
                private static Entry CreateSentinel()
                {
                        Entry s = new Entry( default (TKey), default (TValue));
                        s.Prev = s;
                        s.Next = s;
                        return s;
                }



Clone Instance
2
Line Count
6
Source Line
152
Source File
src/NHibernate/Util/SequencedHashMap.cs

                /// <summary>
                /// Construct an empty sentinel used to hold the head (sentinel.next) and the tail (sentinal.prev)
                /// of the list. The sentinal has a <see langword="null" /> key and value
                /// </summary>
                /// <returns></returns>
                private static Entry CreateSentinel()
                {
                        Entry s = new Entry(null, null);
                        s.Prev = s;
                        s.Next = s;
                        return s;
                }



Clone AbstractionParameter Count: 2Parameter Bindings

#endregion
/// <summary>
/// Construct an empty sentinel used to hold the head (sentinel.next) and the tail (sentinal.prev)
/// of the list. The sentinal has a <see langword="null" /> key and value
/// </summary>
/// <returns></returns>
private static Entry CreateSentinel()
{
   Entry s = new Entry( [[#variable2bfb0480]], [[#variable2bfb0400]]);
   s.Prev = s;
   s.Next = s;
   return s;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#2bfb0480]]
default (TKey) 
12[[#2bfb0480]]
null 
21[[#2bfb0400]]
default (TValue) 
22[[#2bfb0400]]
null