Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/09 17:30:33 (15 years ago)
Author:
kgrading
Message:

renamed the getLogger method (#529)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Common/Logging.cs

    r782 r1371  
    4040    /// </summary>
    4141    /// <returns>the instance of the logger</returns>
    42     public static Logging GetInstance() {
     42    public static Logging Instance {
     43      get {
     44        if (instance == null)
     45         instance = new Logging();
     46        return instance;
     47      }
     48      set {}
     49    }
     50   
     51    static Logging GetInstance() {
    4352      if (instance == null)
    4453        instance = new Logging();
Note: See TracChangeset for help on using the changeset viewer.