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/TaskDownloader.cs

    r14185 r14927  
    4040          resultsLock.EnterReadLock();
    4141          return results.Count == taskIds.Count();
    42         }
    43         finally { resultsLock.ExitReadLock(); }
     42        } finally { resultsLock.ExitReadLock(); }
    4443      }
    4544    }
     
    6261          resultsLock.EnterReadLock();
    6362          return results.Count;
    64         }
    65         finally { resultsLock.ExitReadLock(); }
     63        } finally { resultsLock.ExitReadLock(); }
    6664      }
    6765    }
     
    7270          resultsLock.EnterReadLock();
    7371          return results;
    74         }
    75         finally { resultsLock.ExitReadLock(); }
     72        } finally { resultsLock.ExitReadLock(); }
    7673      }
    7774    }
     
    9491                resultsLock.EnterWriteLock();
    9592                results.Add(localTask.Id, hiveTask);
    96               }
    97               finally { resultsLock.ExitWriteLock(); }
     93              } finally { resultsLock.ExitWriteLock(); }
    9894            }
    9995          });
Note: See TracChangeset for help on using the changeset viewer.