diff options
Diffstat (limited to '')
-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 |