Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/25/09 11:32:31 (15 years ago)
Author:
svonolfe
Message:

Refactored DAL, avoided possible race conditions (#372)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/ClientGroupAdapter.cs

    r1166 r1175  
    2727using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
    2828using HeuristicLab.Hive.Contracts.BusinessObjects;
    29 using System.Runtime.CompilerServices;
    3029using System.Data;
    3130
     
    233232
    234233    #region IClientGroupAdapter Members
    235     [MethodImpl(MethodImplOptions.Synchronized)]
    236234    public override void Update(ClientGroup group) {
    237235      if (group != null) {
     
    273271    }
    274272
    275     [MethodImpl(MethodImplOptions.Synchronized)]
    276273    public override bool Delete(ClientGroup group) {
    277274      if (group != null) {
Note: See TracChangeset for help on using the changeset viewer.