diff options
author | UbitUmarov | 2019-01-26 16:42:42 +0000 |
---|---|---|
committer | UbitUmarov | 2019-01-26 16:42:42 +0000 |
commit | 695d807696709920eb12c2d4bd8af07af922566d (patch) | |
tree | d2ef87a97b3505895e79387eb176fde7c373e630 /OpenSim/Tests | |
parent | ok i said all ( lie ) (diff) | |
download | opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.zip opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.gz opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.bz2 opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.xz |
change encoding of a few event caps messages
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs b/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs index 9880c91..b17425a 100644 --- a/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs +++ b/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs | |||
@@ -30,6 +30,7 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Reflection; | 32 | using System.Reflection; |
33 | using System.Text; | ||
33 | using System.Threading; | 34 | using System.Threading; |
34 | using log4net; | 35 | using log4net; |
35 | using Nini.Config; | 36 | using Nini.Config; |
@@ -183,5 +184,15 @@ namespace OpenSim.Tests.Common | |||
183 | { | 184 | { |
184 | AddEvent(avatarID, "partPhysicsProperties", localID, physhapetype, density, friction, bounce, gravmod); | 185 | AddEvent(avatarID, "partPhysicsProperties", localID, physhapetype, density, friction, bounce, gravmod); |
185 | } | 186 | } |
186 | } | 187 | |
188 | public StringBuilder StartEvent(string eventName) | ||
189 | { | ||
190 | return null; | ||
191 | } | ||
192 | |||
193 | public string EndEvent(StringBuilder sb) | ||
194 | { | ||
195 | return ""; | ||
196 | } | ||
197 | } | ||
187 | } \ No newline at end of file | 198 | } \ No newline at end of file |