clean some spurius chars and a few other things. Thanks Vincent Sylvester

This commit is contained in:
UbitUmarov
2022-11-12 02:49:01 +00:00
parent 472c243362
commit d9380c9b83
57 changed files with 111 additions and 112 deletions

View File

@@ -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;