Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12853


Ignore:
Timestamp:
08/12/15 16:37:47 (9 years ago)
Author:
ascheibe
Message:

#2388 some minor cleanups

Location:
branches/HiveStatistics/sources
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj

    r12761 r12853  
    133133    <Compile Include="Enums\CpuArchitecture.cs" />
    134134    <Compile Include="Interfaces\IPersistenceManager.cs" />
     135    <Compile Include="Interfaces\ITransactionManager.cs" />
    135136    <Compile Include="Manager\PersistenceManager.cs" />
     137    <Compile Include="Manager\TransactionManager.cs" />
    136138    <Compile Include="Plugin.cs" />
    137139    <Compile Include="HiveDataContext.cs">
     
    143145      <DependentUpon>HiveDataContext.dbml</DependentUpon>
    144146    </Compile>
    145     <Compile Include="Interfaces\ITransactionManager.cs" />
    146147    <Compile Include="Enums\TaskState.cs" />
    147148    <Compile Include="Logger.cs" />
     
    155156    </Compile>
    156157    <Compile Include="Enums\SlaveState.cs" />
    157     <Compile Include="Manager\TransactionManager.cs" />
    158158  </ItemGroup>
    159159  <ItemGroup>
     
    182182  <ItemGroup>
    183183    <Content Include="SQL Scripts\Initialize Hive Database.sql" />
    184     <Content Include="SQL Scripts\Migrate to Filestream.sql" />
    185184    <Content Include="SQL Scripts\Prepare Hive Database.sql" />
    186185  </ItemGroup>
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/Manager/PersistenceManager.cs

    r12761 r12853  
    202202    #endregion
    203203
    204     // str.Remove(str.IndexOf(','));
    205204    public TableInformation GetTableInformation(string table) {
    206205      string query = string.Format("sp_spaceused '{0}', @updateusage='true'", table);
     
    224223
    225224    public void Dispose() {
    226       //if (dataContext != null) {
    227       //  dataContext.Dispose();
    228       //}
     225      if (dataContext != null) {
     226        dataContext.Dispose();
     227      }
    229228    }
    230229
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/Converter.cs

    r12691 r12853  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22using System;
    223using System.Linq;
    324using DA = HeuristicLab.Services.Hive.DataAccess;
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/Manager/NewEventManager.cs

    r12789 r12853  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22using System;
    223using System.Linq;
    324using HeuristicLab.Services.Hive.DataAccess;
Note: See TracChangeset for help on using the changeset viewer.