Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/14/12 09:28:03 (12 years ago)
Author:
ascheibe
Message:

#1952 removed mono compatibility code that doesn't seem to be necessary and caused the GA performance unit test to fail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Auxiliary/TypeLoader.cs

    r8641 r8647  
    4747      try {
    4848        type = Type.GetType(typeNameString, true);
    49         #region Mono Compatibility
    50         // mono: workaround until Mono bug #580 (http://bugzilla.xamarin.com/show_bug.cgi?id=580) is fixed
    51         if (type.AssemblyQualifiedName != typeNameString)
    52           throw new TypeLoadException(
    53             String.Format(
    54             @"Could not load requested type ""{0}"", loaded ""{1}"" instead.",
    55             typeNameString, type.AssemblyQualifiedName));
    56         #endregion
    57       }
     49      }     
    5850      catch (Exception) {
    5951        Logger.Warn(String.Format(
Note: See TracChangeset for help on using the changeset viewer.