Update svn properties, minor formatting cleanup.

Fix unreachable code due to typo in llDetectedGroup.
This commit is contained in:
Jeff Ames
2008-09-10 05:17:28 +00:00
parent 03672c35e4
commit b9b996be38
7 changed files with 22 additions and 22 deletions

View File

@@ -133,7 +133,7 @@ namespace OpenSim.Data.SQLite
ds.Tables.Add(createItemsTable());
setupItemsCommands(itemsDa, m_conn);
itemsDa.Fill(ds.Tables["primitems"]);
ds.Tables.Add(createTerrainTable());
setupTerrainCommands(terrainDa, m_conn);
@@ -990,7 +990,7 @@ namespace OpenSim.Data.SQLite
cmd.ExecuteNonQuery();
}
prim.Color = Color.FromArgb(Convert.ToInt32(row["ColorR"]), Convert.ToInt32(row["ColorB"]), Convert.ToInt32(row["ColorG"]));
return prim;
}