Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/DebugString
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/DebugString
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/DebugString/DebugString.cs
r14185 r14927 20 20 #endregion 21 21 22 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;22 using HeuristicLab.Persistence; 23 23 using HeuristicLab.Persistence.Interfaces; 24 24 … … 28 28 /// Simple write-only format for debugging purposes. 29 29 /// </summary> 30 [Storable Class]30 [StorableType("05a1ee13-75c0-4ff1-b403-57573364d7e3")] 31 31 public class DebugString : ISerialData { 32 32 -
branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/DebugString/DebugStringFormat.cs
r14185 r14927 20 20 #endregion 21 21 22 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;22 using HeuristicLab.Persistence; 23 23 using HeuristicLab.Persistence.Interfaces; 24 24 … … 28 28 /// Simple write-only format for debugging purposes. 29 29 /// </summary> 30 [Storable Class]30 [StorableType("90f9f859-5c96-4d91-8f17-826a401ecd8f")] 31 31 public class DebugStringFormat : FormatBase<DebugString> { 32 32 /// <summary> -
branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/DebugString/DebugStringGenerator.cs
r14185 r14927 185 185 /// <returns>A string representation of the complete object graph.</returns> 186 186 public static string Serialize(object o, Configuration configuration) { 187 Serializer s = newSerializer(o, configuration);187 var s = new HeuristicLab.Persistence.Core.Serializer(o, configuration); 188 188 DebugStringGenerator generator = new DebugStringGenerator(); 189 189 StringBuilder sb = new StringBuilder();
Note: See TracChangeset
for help on using the changeset viewer.