Skip to content

Commit af91b48

Browse files
committedJun 15, 2011
fix
1 parent 8035161 commit af91b48

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎src/analysis/network/qgslinevectorlayerdirector.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,13 @@ void QgsLineVectorLayerDirector::makeGraph( QgsGraphBuilderInterface *builder, c
339339
{
340340
if ( it->mFirstPoint == pt1 && it->mLastPoint == pt2 )
341341
{
342-
std::cout << "op1\n";
343342
pointsOnArc[ pt1.sqrDist( it->mTiedPoint ) ] = it->mTiedPoint;
344343
}
345344
}
346345
for ( it = pointLengthIt+1; it != pointLengthMap.end(); ++it )
347346
{
348347
if ( it->mFirstPoint == pt1 && it->mLastPoint == pt2 )
349348
{
350-
std::cout << "op2\n";
351349
pointsOnArc[ pt1.sqrDist( it->mTiedPoint ) ] = it->mTiedPoint;
352350
}
353351
}

0 commit comments

Comments
 (0)
Please sign in to comment.