- Removed debug print method

This commit is contained in:
Sean Dague
2008-10-16 19:05:32 +00:00
parent b61f124cc3
commit a29d8b9abb

View File

@@ -323,17 +323,6 @@ namespace OpenSim.Data.Tests
name.Append(ch);
}
return name.ToString();
}
public void PrintFriendsList(List<FriendListItem> fl)
{
Console.WriteLine("Friends {0} and {1} and {2}", agent1, agent2, agent3);
Console.WriteLine("List owner is {0}",fl[0].FriendListOwner);
for (int i = 0; i < fl.Count; i++)
{
Console.WriteLine("Friend {0}",fl[i].Friend);
}
}
}
}
}