Remove debug traces

This commit is contained in:
jfa 2008-07-25 10:50:02 +00:00
parent 4b33363430
commit db17b46ddb

View File

@ -177,7 +177,6 @@ void SMESH_MesherHelper::SetSubShape(const TopoDS_Shape& aSh)
bool isClosed = BRep_Tool::IsClosed( edge, face ); bool isClosed = BRep_Tool::IsClosed( edge, face );
// BEGIN: jfa for bug 0019943 // BEGIN: jfa for bug 0019943
if (isClosed) { if (isClosed) {
MESSAGE("$$$ CLOSED 1 $$$")
isClosed = false; isClosed = false;
for (TopExp_Explorer expw (face, TopAbs_WIRE); expw.More() && !isClosed; expw.Next()) { for (TopExp_Explorer expw (face, TopAbs_WIRE); expw.More() && !isClosed; expw.Next()) {
const TopoDS_Wire& wire = TopoDS::Wire(expw.Current()); const TopoDS_Wire& wire = TopoDS::Wire(expw.Current());
@ -192,7 +191,6 @@ void SMESH_MesherHelper::SetSubShape(const TopoDS_Shape& aSh)
} }
// END: jfa for bug 0019943 // END: jfa for bug 0019943
if (isClosed) { if (isClosed) {
MESSAGE("$$$ CLOSED 2 $$$")
// initialize myPar1, myPar2 and myParIndex // initialize myPar1, myPar2 and myParIndex
if ( mySeamShapeIds.empty() ) { if ( mySeamShapeIds.empty() ) {
gp_Pnt2d uv1, uv2; gp_Pnt2d uv1, uv2;