Changeset 12664
- Timestamp:
- 07/07/15 21:08:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Attributes/CreatableAttribute.cs
r12649 r12664 88 88 Priority = int.MaxValue; 89 89 } 90 public CreatableAttribute(object category)91 : this() {92 Category = (string)category;93 }94 // BackwardsCompatibility3.395 #region Backwards compatible code, remove with 3.496 [Obsolete]97 90 public CreatableAttribute(string category) 98 91 : this() { 99 92 Category = category; 100 93 } 101 #endregion102 94 103 95 public static bool IsCreatable(Type type) {
Note: See TracChangeset
for help on using the changeset viewer.