mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
* squash some obvious warnings
* a couple more remain that preferably the original coders should look at in more detail (obsolete warnings in the ogp module and not overriding warnings in the script engine)
This commit is contained in:
@@ -1741,7 +1741,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
/// <param name="group"></param>
|
||||
public void DeleteSceneObject(SceneObjectGroup group)
|
||||
{
|
||||
SceneObjectPart rootPart = group.GetChildPart(group.UUID);
|
||||
//SceneObjectPart rootPart = group.GetChildPart(group.UUID);
|
||||
|
||||
foreach (SceneObjectPart part in group.Children.Values)
|
||||
{
|
||||
|
||||
@@ -214,9 +214,9 @@ namespace OpenSim.Region.Physics.Meshing
|
||||
for (int i = 0; i < numFaces; i++)
|
||||
{
|
||||
Face f = primMesh.faces[i];
|
||||
Coord c1 = primMesh.coords[f.v1];
|
||||
Coord c2 = primMesh.coords[f.v2];
|
||||
Coord c3 = primMesh.coords[f.v3];
|
||||
// Coord c1 = primMesh.coords[f.v1];
|
||||
// Coord c2 = primMesh.coords[f.v2];
|
||||
// Coord c3 = primMesh.coords[f.v3];
|
||||
|
||||
int resultIndex = i * 3;
|
||||
result[resultIndex] = f.v1;
|
||||
|
||||
Reference in New Issue
Block a user