Skip to content

Commit 65aa885

Browse files
committed
[Geometry checker] Remove some debugging prints
1 parent 28dc710 commit 65aa885

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/plugins/geometry_checker/checks/qgsgeometryduplicatenodescheck.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ void QgsGeometryDuplicateNodesCheck::collectErrors( QList<QgsGeometryCheckError*
3333
{
3434
QgsPointV2 pi = geom->vertexAt( QgsVertexId( iPart, iRing, iVert ) );
3535
QgsPointV2 pj = geom->vertexAt( QgsVertexId( iPart, iRing, jVert ) );
36-
QgsDebugMsg( QString( "(%1,%2) (%3,%4) d = %5, tol = %6" ).arg( pi.x(), 0, 'f', 6 ).arg( pi.y(), 0, 'f', 6 ).arg( pj.x(), 0, 'f', 6 ).arg( pj.y(), 0, 'f', 6 ).arg( QgsGeometryUtils::sqrDistance2D( pi, pj ) ).arg( QgsGeometryCheckPrecision::tolerance(), 0, 'f', 16 ) );
3736
if ( QgsGeometryUtils::sqrDistance2D( pi, pj ) < QgsGeometryCheckPrecision::tolerance() * QgsGeometryCheckPrecision::tolerance() )
3837
{
39-
QgsDebugMsg( "Duplicate" );
4038
errors.append( new QgsGeometryCheckError( this, featureid, pj, QgsVertexId( iPart, iRing, jVert ) ) );
4139
}
4240
}

0 commit comments

Comments
 (0)