Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Persistence.GUI/3.3/PersistenceAnalysis.cs
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Persistence.GUI/3.3/PersistenceAnalysis.cs
r11172 r14711 87 87 } 88 88 89 /* private static bool IsCorrectlyStorable( Typetype) {89 /* private static bool IsCorrectlyStorable(MemberSelection type) { 90 90 if (StorableAttribute.GetStorableMembers(type).Count() > 0) { 91 if (!Storable ClassAttribute.IsStorableType(type, true))91 if (!StorableTypeAttribute.IsStorableType(type, true)) 92 92 return false; 93 if (type.GetConstructor(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public, null, Type.EmptyTypes, null) == null &&93 if (type.GetConstructor(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public, null, MemberSelection.EmptyTypes, null) == null && 94 94 StorableConstructorAttribute.GetStorableConstructor(type) == null) 95 95 return false;
Note: See TracChangeset
for help on using the changeset viewer.