aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock
diff options
context:
space:
mode:
authorUbitUmarov2019-06-09 20:15:36 +0100
committerUbitUmarov2019-06-09 20:15:36 +0100
commit9ff7601214c8cbc022308dc62ed8aa321598a1df (patch)
tree448b410a8b8e90ddf02d5625a7a148b4275b6a50 /OpenSim/Tests/Common/Mock
parentmantis 8460: reduce odds of watchdog timeout warning (diff)
downloadopensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.zip
opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.gz
opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.bz2
opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.xz
reduce some useless array copies
Diffstat (limited to 'OpenSim/Tests/Common/Mock')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 3cd5253..fd14291 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -819,7 +819,8 @@ namespace OpenSim.Tests.Common
819 { 819 {
820 } 820 }
821 821
822 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory) 822 public virtual void SendXferPacket(ulong xferID, uint packet,
823 byte[] XferData, int XferDataOffset, int XferDatapktLen, bool isTaskInventory)
823 { 824 {
824 } 825 }
825 826