We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 143b3fc + 9cf7e0a commit be6a306Copy full SHA for be6a306
Orm/Xtensive.Orm/Tuples/TupleDescriptor.cs
@@ -121,7 +121,6 @@ public override int GetHashCode()
121
122
public void GetObjectData(SerializationInfo info, StreamingContext context)
123
{
124
- info.AddValue("FieldCount", FieldCount);
125
info.AddValue("ValuesLength", ValuesLength);
126
info.AddValue("ObjectsLength", ObjectsLength);
127
@@ -286,7 +285,6 @@ private TupleDescriptor(Type[] fieldTypes)
286
285
287
public TupleDescriptor(SerializationInfo info, StreamingContext context)
288
289
- var fieldCount = info.GetInt32("FieldCount");
290
ValuesLength = info.GetInt32("ValuesLength");
291
ObjectsLength = info.GetInt32("ObjectsLength");
292
0 commit comments