diff options
author | Justin Clark-Casey (justincc) | 2011-10-17 20:50:29 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-17 20:50:29 +0100 |
commit | 120114e96becc6fee1311300359dcefaf4013c0e (patch) | |
tree | b03fd72833eb974da4eb4ac8795cf74c69cd0770 /OpenSim/Region/OptionalModules | |
parent | Add avatar names to debug packet output (diff) | |
download | opensim-SC-120114e96becc6fee1311300359dcefaf4013c0e.zip opensim-SC-120114e96becc6fee1311300359dcefaf4013c0e.tar.gz opensim-SC-120114e96becc6fee1311300359dcefaf4013c0e.tar.bz2 opensim-SC-120114e96becc6fee1311300359dcefaf4013c0e.tar.xz |
refactor: Make IClientAPI.DebugPacketFormat a property rather than a setter without a getter
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 84f45a8..8e9647e 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -866,10 +866,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
866 | 866 | ||
867 | #pragma warning restore 67 | 867 | #pragma warning restore 67 |
868 | 868 | ||
869 | public void SetDebugPacketLevel(int newDebug) | 869 | public int DebugPacketLevel { get; set; } |
870 | { | ||
871 | |||
872 | } | ||
873 | 870 | ||
874 | public void InPacket(object NewPack) | 871 | public void InPacket(object NewPack) |
875 | { | 872 | { |
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 73d8828..ee9a4c1 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -823,9 +823,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
823 | { | 823 | { |
824 | } | 824 | } |
825 | 825 | ||
826 | public void SetDebugPacketLevel(int newDebug) | 826 | public int DebugPacketLevel { get; set; } |
827 | { | ||
828 | } | ||
829 | 827 | ||
830 | public void InPacket(object NewPack) | 828 | public void InPacket(object NewPack) |
831 | { | 829 | { |