diff --git a/Testing/Code/FeatureExtraction/otbLocalHough.cxx b/Testing/Code/FeatureExtraction/otbLocalHough.cxx
index fdf3e8c0b23297e73f1b43e49fac22fe4b8f5710..ffb2b78f400b1b5dbe2a9b8faecfd2c0e5f47126 100755
--- a/Testing/Code/FeatureExtraction/otbLocalHough.cxx
+++ b/Testing/Code/FeatureExtraction/otbLocalHough.cxx
@@ -63,7 +63,6 @@ int otbLocalHough( int argc, char* argv[] )
         
   	typedef otb::LineSpatialObjectList			LinesListType;
   	LinesListType::Pointer list = LinesListType::New();
-  	
   	        
 	filter->SetRadius( Radius );
 	filter->SetNumberOfLines( NumberOfLines );
@@ -73,10 +72,7 @@ int otbLocalHough( int argc, char* argv[] )
         
         list = filter->GetOutput();
         
-        LinesListType::const_iterator it;
         std::cout<<list->size()<<std::endl;
-/*        for (it=list.begin(); it!=list.end(); it++)
-           std::cout<< (*it) <<std::endl;*/
        
     } 
   catch( itk::ExceptionObject & err )