diff --git a/Code/IO/otbTileRecord.cxx b/Code/IO/otbTileRecord.cxx
deleted file mode 100644
index 67b84ca49d8b075a2d156c268d0f48daa75d01f0..0000000000000000000000000000000000000000
--- a/Code/IO/otbTileRecord.cxx
+++ /dev/null
@@ -1,52 +0,0 @@
-/*=========================================================================
-
- Program:   ORFEO Toolbox
- Language:  C++
- Date:      $Date$
- Version:   $Revision$
-
-
- Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
- See OTBCopyright.txt for details.
-
-
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE.  See the above copyright notices for more information.
-
- =========================================================================*/
-
-#include "otbTileRecord.h"
-
-namespace otb
-{
-TileRecord::TileRecord()
-{
-  m_FileName = "";
-  m_Date = time(NULL);
-}
-
-TileRecord::~TileRecord()
-{
-}
-
-void TileRecord::SetFileName(std::string _arg)
-{
-  m_FileName = _arg;
-}
-
-std::string TileRecord::GetFileName()
-{
-  return m_FileName;
-}
-
-void TileRecord::SetDate()
-{
-  m_Date = time(NULL);
-}
-
-time_t TileRecord::GetDate()
-{
-  return m_Date;
-}
-}
diff --git a/Code/IO/otbTileRecord.h b/Code/IO/otbTileRecord.h
deleted file mode 100644
index 3a393875e9d9d4b4a695965dabb7ed9f1c54672f..0000000000000000000000000000000000000000
--- a/Code/IO/otbTileRecord.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*=========================================================================
-
- Program:   ORFEO Toolbox
- Language:  C++
- Date:      $Date$
- Version:   $Revision$
-
-
- Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
- See OTBCopyright.txt for details.
-
-
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE.  See the above copyright notices for more information.
-
- =========================================================================*/
-#ifndef __otbTileRecord_h
-#define __otbTileRecord_h
-
-#if defined(_MSC_VER)
-#pragma warning ( disable : 4786 )
-#endif
-
-#include "otbImage.h"
-#include "time.h"
-
-namespace otb
-{
-/** \class TileRecord
- * \brief Manages Tiles from OSM.
- *
- */
-class ITK_EXPORT TileRecord
-{
-public:
-  /** Standard typedefs */
-  typedef TileRecord Self;
-
-  /** Constructor */
-  TileRecord();
-  ~TileRecord();
-
-  /** Accessors */
-  void SetFileName(std::string _arg);
-  std::string GetFileName();
-
-  void SetDate();
-  time_t GetDate();
-
-private:
-  /** File name */
-  std::string m_FileName;
-
-  /** Date time */
-  time_t m_Date;
-};
-}
-#endif