* Corrects decoding behaviour of Message classes that are abstract

* Corrects behaviour of displaying data sent to uploader capability in Inspector views
* Fixes unreferenced object exception in GridProxy when checking for uploader capabilities

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2967 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2009-07-10 22:30:32 +00:00
parent 268ab32fef
commit b4ad11b802
3 changed files with 36 additions and 18 deletions

View File

@@ -878,7 +878,7 @@ namespace OpenMetaverse.Packets
return String.Format("{0,30}: {1,-2} {2,-37} [ParcelCategory]",
fieldName,
fieldData,
"(" + (ParcelCategory)(uint)fieldData + ")");
"(" + fieldData + ")");
}
private static string DecodeObjectUpdateFlags(string fieldName, object fieldData)