From 66cc76355aa9fe1b69d4b4bb52ce6dc8fc340c9f Mon Sep 17 00:00:00 2001
From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org>
Date: Mon, 24 Nov 2008 15:18:30 +0800
Subject: [PATCH] STYLE: removing lines in comment

---
 Code/BasicFilters/otbImageToPointSetFilter.h  |  7 -----
 .../BasicFilters/otbImageToPointSetFilter.txx | 31 -------------------
 2 files changed, 38 deletions(-)

diff --git a/Code/BasicFilters/otbImageToPointSetFilter.h b/Code/BasicFilters/otbImageToPointSetFilter.h
index a3d5aa2225..e4e4b3b8c0 100644
--- a/Code/BasicFilters/otbImageToPointSetFilter.h
+++ b/Code/BasicFilters/otbImageToPointSetFilter.h
@@ -42,13 +42,9 @@ public:
   typedef itk::SmartPointer<Self>          Pointer;
   typedef itk::SmartPointer<const Self>    ConstPointer;
 
-  
   /** Run-time type information (and related methods). */
   itkTypeMacro(ImageToPointSetFilter, PointSetSource);
 
-  /** Create a valid output. */
-//   itk::DataObject::Pointer  MakeOutput(unsigned int idx);
-
   /** Some Image related typedefs. */
   typedef   TInputImage                             InputImageType;
   typedef   typename InputImageType::Pointer        InputImagePointer;
@@ -68,9 +64,6 @@ public:
   /** Get the input image of this process object.  */
   const InputImageType * GetInput(unsigned int idx);
 
-  /** Get the output Point Set of this process object.  */
-//   OutputPointSetType * GetOutput(void);
-
   /** Prepare the output */
   void GenerateOutputInformation(void);
      
diff --git a/Code/BasicFilters/otbImageToPointSetFilter.txx b/Code/BasicFilters/otbImageToPointSetFilter.txx
index 21c364eb30..44cff425dd 100644
--- a/Code/BasicFilters/otbImageToPointSetFilter.txx
+++ b/Code/BasicFilters/otbImageToPointSetFilter.txx
@@ -49,22 +49,6 @@ ImageToPointSetFilter<TInputImage,TOutputPointSet>
 ::~ImageToPointSetFilter()
 {
 }
-  
-
-/**
- *   Make Output
- */
-// template <class TInputImage, class TOutputPointSet>
-// itk::DataObject::Pointer
-// ImageToPointSetFilter<TInputImage,TOutputPointSet>
-// ::MakeOutput(unsigned int)
-// {
-//   OutputPointSetPointer  outputPointSet = OutputPointSetType::New();
-//   return dynamic_cast< itk::DataObject *>( outputPointSet.GetPointer() );
-// }
-
-
-
 
 /**
  *
@@ -81,7 +65,6 @@ ImageToPointSetFilter<TInputImage,TOutputPointSet>
 }
 
 
-  
 /**
  *
  */
@@ -94,20 +77,6 @@ ImageToPointSetFilter<TInputImage,TOutputPointSet>
     (this->ProcessObjectType::GetInput(idx));
 }
 
- 
-/**
- *
- */
-// template <class TInputImage, class TOutputPointSet>
-// typename ImageToPointSetFilter<TInputImage,TOutputPointSet>::OutputPointSetType *
-// ImageToPointSetFilter<TInputImage,TOutputPointSet>
-// ::GetOutput(void) 
-// {
-//   return dynamic_cast<OutputPointSetType*>
-//     (this->ProcessObjectType::GetOutput(0));
-// }
-
-
 /**
  *
  */
-- 
GitLab