aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2008-10-16 19:05:32 +0000
committerSean Dague2008-10-16 19:05:32 +0000
commita29d8b9abb26bbdec728d3fd3672578825f47de3 (patch)
treed2b19d1311e4d56e6477f6babe4d339472554292
parentmore fun with rebasing (diff)
downloadopensim-SC_OLD-a29d8b9abb26bbdec728d3fd3672578825f47de3.zip
opensim-SC_OLD-a29d8b9abb26bbdec728d3fd3672578825f47de3.tar.gz
opensim-SC_OLD-a29d8b9abb26bbdec728d3fd3672578825f47de3.tar.bz2
opensim-SC_OLD-a29d8b9abb26bbdec728d3fd3672578825f47de3.tar.xz
- Removed debug print method
-rw-r--r--OpenSim/Data/Tests/BasicUserTest.cs13
1 files changed, 1 insertions, 12 deletions
diff --git a/OpenSim/Data/Tests/BasicUserTest.cs b/OpenSim/Data/Tests/BasicUserTest.cs
index 5b82b3b..91bd586 100644
--- a/OpenSim/Data/Tests/BasicUserTest.cs
+++ b/OpenSim/Data/Tests/BasicUserTest.cs
@@ -323,17 +323,6 @@ namespace OpenSim.Data.Tests
323 name.Append(ch); 323 name.Append(ch);
324 } 324 }
325 return name.ToString(); 325 return name.ToString();
326 } 326 }
327
328 public void PrintFriendsList(List<FriendListItem> fl)
329 {
330 Console.WriteLine("Friends {0} and {1} and {2}", agent1, agent2, agent3);
331 Console.WriteLine("List owner is {0}",fl[0].FriendListOwner);
332 for (int i = 0; i < fl.Count; i++)
333 {
334 Console.WriteLine("Friend {0}",fl[i].Friend);
335 }
336
337 }
338 } 327 }
339} 328}