Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nnhy committed Dec 8, 2024
2 parents 179f40d + 2e82cf8 commit 7528665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XCode/Entity/DirtyCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ public Boolean Add(String key, Object? value)
// 扩容
var arr = new String[ks.Length * 2];
Array.Copy(ks, arr, ks.Length);
ks = _keys = arr;

var arr2 = new Object[arr.Length];
Array.Copy(vs, arr2, vs.Length);
vs = _values = arr2;
ks = _keys = arr;
}
}
}
Expand Down

0 comments on commit 7528665

Please sign in to comment.