Free cookie consent management tool by TermsFeed Policy Generator

Changeset 262


Ignore:
Timestamp:
05/16/08 01:01:57 (16 years ago)
Author:
swagner
Message:

Merged fix of ticket #151 (r260:261) from trunk into 3.0 release branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/sources/HeuristicLab.Core/Scope.cs

    r63 r262  
    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.