avoid a null ref, plus some cleanup

This commit is contained in:
UbitUmarov
2020-05-07 02:02:50 +01:00
parent d5baeb4690
commit ac7187eada
5 changed files with 16 additions and 75 deletions

View File

@@ -48,18 +48,6 @@ namespace OpenSim.Framework.Servers.HttpServer
public DropMethod Drop;
public UUID Id;
public int TimeOutms;
//public EventType Type;
public enum EventType : int
{
Poll = 0,
LslHttp = 1,
Inventory = 2,
Texture = 3,
Mesh = 4,
Mesh2 = 5,
Asset = 6
}
public string Url { get; set; }
@@ -87,7 +75,6 @@ namespace OpenSim.Framework.Servers.HttpServer
Drop = pDrop;
Id = pId;
TimeOutms = pTimeOutms;
//Type = EventType.Poll;
}
}
}