diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 3fc327f2d5..5c17bcca75 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -13474,26 +13474,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP /// /// Packet handling method. /// - public PacketMethod method { get; set; } + public PacketMethod method; /// /// Should this packet be handled asynchronously? /// - public bool Async { get; set; } + public bool Async; } - public class AsyncPacketProcess - { - public readonly Packet Pack = null; - public readonly PacketMethod Method = null; - public AsyncPacketProcess(PacketMethod pMethod, Packet pPack) - { - Method = pMethod; - Pack = pPack; - } - } - public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) { AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);