Free cookie consent management tool by TermsFeed Policy Generator

Changeset 261


Ignore:
Timestamp:
05/16/08 00:53:45 (16 years ago)
Author:
swagner
Message:

Fixed ticket #151

  • corrected error in GetScope(string name) and GetScope(Guid guid)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/Scope.cs

    r63 r261  
    172172      else {
    173173        for (int i = 0; i < mySubScopes.Count; i++) {
    174           IScope s = GetScope(guid);
     174          IScope s = mySubScopes[i].GetScope(guid);
    175175          if (s != null) return s;
    176176        }
     
    182182      else {
    183183        for (int i = 0; i < mySubScopes.Count; i++) {
    184           IScope s = GetScope(name);
     184          IScope s = mySubScopes[i].GetScope(name);
    185185          if (s != null) return s;
    186186        }
Note: See TracChangeset for help on using the changeset viewer.