Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/10 13:56:57 (14 years ago)
Author:
mkommend
Message:

corrected naming of function (ticket #857)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm/3.2/TypeExtension.cs

    r2790 r2938  
    3232        return true;
    3333
    34       if (recursiveCheckGenericTypes(type, other))
     34      if (RecursiveCheckGenericTypes(type, other))
    3535        return true;
    3636
     
    4444    }
    4545
    46     private static bool recursiveCheckGenericTypes(Type type, Type other) {
     46    private static bool RecursiveCheckGenericTypes(Type type, Type other) {
    4747      if (type.CheckGenericTypes(other))
    4848        return true;
     
    5151        return false;
    5252
    53       return recursiveCheckGenericTypes(type.BaseType, other);
     53      return RecursiveCheckGenericTypes(type.BaseType, other);
    5454    }
    5555
Note: See TracChangeset for help on using the changeset viewer.