Changeset 3027 for trunk/sources
- Timestamp:
- 03/15/10 09:43:12 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence.GUI/3.3/PersistenceAnalysis.cs
r3003 r3027 58 58 if (!IsSerializable(type, config)) 59 59 types.Add(type); 60 if (!IsCorrectlyStorable(type))61 storableInconsistentcy.Add(type); 60 /* if (!IsCorrectlyStorable(type)) 61 storableInconsistentcy.Add(type); */ 62 62 } catch { 63 63 types.Add(type); … … 68 68 } 69 69 70 private static bool IsCorrectlyStorable(Type type) {70 /* private static bool IsCorrectlyStorable(Type type) { 71 71 if (StorableAttribute.GetStorableMembers(type).Count() > 0) { 72 72 if (!StorableClassAttribute.IsStorableType(type, true)) … … 77 77 } 78 78 return true; 79 } 79 } */ 80 80 } 81 81 }
Note: See TracChangeset
for help on using the changeset viewer.