mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
clean some spurius chars and a few other things. Thanks Vincent Sylvester
This commit is contained in:
@@ -2173,7 +2173,7 @@ namespace OpenSim.Data.SQLite
|
||||
if (prim.KeyframeMotion != null)
|
||||
row["KeyframeMotion"] = prim.KeyframeMotion.Serialize();
|
||||
else
|
||||
row["KeyframeMotion"] = Array.Empty<byte>(); ;
|
||||
row["KeyframeMotion"] = Array.Empty<byte>();
|
||||
|
||||
row["PassTouches"] = prim.PassTouches;
|
||||
row["PassCollisions"] = prim.PassCollisions;
|
||||
@@ -2867,10 +2867,6 @@ namespace OpenSim.Data.SQLite
|
||||
{
|
||||
return DbType.Byte;
|
||||
}
|
||||
else if (type == typeof(Double))
|
||||
{
|
||||
return DbType.Double;
|
||||
}
|
||||
else if (type == typeof(Byte[]))
|
||||
{
|
||||
return DbType.Binary;
|
||||
|
||||
Reference in New Issue
Block a user