Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Clients.Hive/3.3/HiveTasks/OptimizerHiveTask.cs

    r14185 r14927  
    9191          }
    9292        }
    93       }
    94       finally {
     93      } finally {
    9594        childHiveTasksLock.ExitWriteLock();
    9695      }
     
    151150            }
    152151          }
    153         }
    154         finally { childHiveTasksLock.ExitWriteLock(); }
     152        } finally { childHiveTasksLock.ExitWriteLock(); }
    155153      }
    156154    }
     
    167165            }
    168166          }
    169         }
    170         finally { childHiveTasksLock.ExitWriteLock(); }
     167        } finally { childHiveTasksLock.ExitWriteLock(); }
    171168      }
    172169    }
     
    178175            this.childHiveTasks.Remove(this.GetChildByOptimizer(item.Value));
    179176          }
    180         }
    181         finally { childHiveTasksLock.ExitWriteLock(); }
     177        } finally { childHiveTasksLock.ExitWriteLock(); }
    182178      }
    183179    }
     
    189185            this.childHiveTasks.Remove(this.GetChildByOptimizer(item.Value));
    190186          }
    191         }
    192         finally { childHiveTasksLock.ExitWriteLock(); }
     187        } finally { childHiveTasksLock.ExitWriteLock(); }
    193188      }
    194189    }
     
    256251          }
    257252        }
    258       }
    259       finally {
     253      } finally {
    260254        itemTaskLock.ExitWriteLock();
    261255      }
     
    284278          }
    285279        }
    286       }
    287       finally {
     280      } finally {
    288281        itemTaskLock.ExitWriteLock();
    289282      }
     
    310303          child.SetIndexInParentOptimizerList(this);
    311304        }
    312       }
    313       finally { childHiveTasksLock.ExitReadLock(); }
     305      } finally { childHiveTasksLock.ExitReadLock(); }
    314306    }
    315307
     
    382374        }
    383375        return null;
    384       }
    385       finally { childHiveTasksLock.ExitReadLock(); }
     376      } finally { childHiveTasksLock.ExitReadLock(); }
    386377    }
    387378
     
    394385        }
    395386        return null;
    396       }
    397       finally { childHiveTasksLock.ExitReadLock(); }
     387      } finally { childHiveTasksLock.ExitReadLock(); }
    398388    }
    399389
     
    402392      try {
    403393        action();
    404       }
    405       finally {
     394      } finally {
    406395        itemTaskLock.ExitReadLock();
    407396      }
Note: See TracChangeset for help on using the changeset viewer.