Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
13 | 2 | 2 | 0.968 | class_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 13 | 657 | src/NHibernate/Impl/SessionImpl.cs |
2 | 13 | 725 | src/NHibernate/Impl/SessionImpl.cs |
| ||||
public IEnumerable Enumerable(string query) { using (new SessionIdLoggingContext(SessionId)) { return Enumerable(query, NoArgs, NoTypes); } } public IEnumerable Enumerable(string query, object value, IType type) { using (new SessionIdLoggingContext(SessionId)) { return Enumerable(query, new [] { value } , new [] { type } ); } } |
| ||||
// TODO: Scroll(string query, QueryParameters queryParameters) public int Delete(string query) { using (new SessionIdLoggingContext(SessionId)) { return Delete(query, NoArgs, NoTypes); } } public int Delete(string query, object value, IType type) { using (new SessionIdLoggingContext(SessionId)) { return Delete(query, new [] { value } , new [] { type } ); } } |
| |||
// TODO: Scroll(string query, QueryParameters queryParameters) public [[#variable6d4274a0]] [[#variable6d4273e0]](string query) { using (new SessionIdLoggingContext(SessionId)) { return [[#variable6d4273e0]](query, NoArgs, NoTypes); } } public [[#variable6d4274a0]] [[#variable6d4273e0]](string query, object value, IType type) { using (new SessionIdLoggingContext(SessionId)) { return [[#variable6d4273e0]](query, new [] { value } , new [] { type } ); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#6d4274a0]] | IEnumerable |
1 | 2 | [[#6d4274a0]] | int |
2 | 1 | [[#6d4273e0]] | Enumerable |
2 | 2 | [[#6d4273e0]] | Delete |