CloneSet1719


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.972class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11146
src/NHibernate/Persister/Collection/CollectionPropertyMapping.cs
21136
src/NHibernate/Persister/Collection/ElementPropertyMapping.cs
Clone Instance
1
Line Count
11
Source Line
46
Source File
src/NHibernate/Persister/Collection/CollectionPropertyMapping.cs

                public bool TryToType(string propertyName, out IType type)
                {
                        try
                        {
                                type = ToType(propertyName);
                                return true;
                        }
                        catch (Exception)
                        {
                                type = null;
                                return false;
                        }
                }



Clone Instance
2
Line Count
11
Source Line
36
Source File
src/NHibernate/Persister/Collection/ElementPropertyMapping.cs

                public bool TryToType(string propertyName, out IType outType)
                {
                        try
                        {
                                outType = ToType(propertyName);
                                return true;
                        }
                        catch (Exception)
                        {
                                outType = null;
                                return false;
                        }
                }



Clone AbstractionParameter Count: 1Parameter Bindings

public bool TryToType(string propertyName, out IType [[#variable25938220]])
{
   try
   {
       [[#variable25938220]]= ToType(propertyName);
      return true;
   }
   catch (Exception)
   {
       [[#variable25938220]]= null;
      return false;
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#25938220]]
outType 
12[[#25938220]]
type