Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
17 | 2 | 1 | 0.989 | class_member_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 17 | 364 | src/NHibernate/Util/LinkedHashMap.cs |
2 | 17 | 500 | src/NHibernate/Util/SequencedHashMap.cs |
| ||||
#region System.Object Members public override string ToString() { StringBuilder buf = new StringBuilder(); buf.Append('['); for (Entry pos = header.Next; pos != header; pos = pos.Next) { buf.Append(pos.Key); buf.Append('='); buf.Append(pos.Value); if (pos.Next != header) { buf.Append(','); } } buf.Append(']'); return buf.ToString(); } |
| ||||
#region System.Object Members /// <summary></summary> public override string ToString() { StringBuilder buf = new StringBuilder(); buf.Append('['); for (Entry pos = _sentinel.Next; pos != _sentinel; pos = pos.Next) { buf.Append(pos.Key); buf.Append('='); buf.Append(pos.Value); if (pos.Next != _sentinel) { buf.Append(','); } } buf.Append(']'); return buf.ToString(); } |
| |||
#region System.Object Members /// <summary></summary> public override string ToString() { StringBuilder buf = new StringBuilder(); buf.Append('['); for (Entry pos = [[#variable4b45fac0]].Next; pos != [[#variable4b45fac0]]; pos = pos.Next) { buf.Append(pos.Key); buf.Append('='); buf.Append(pos.Value); if (pos.Next != [[#variable4b45fac0]]) { buf.Append(','); } } buf.Append(']'); return buf.ToString(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#4b45fac0]] | header |
1 | 2 | [[#4b45fac0]] | _sentinel |