diff --git a/BaseLib/printList.h b/BaseLib/printList.h
deleted file mode 100644
index 2ca61ea8291b2e30b44df9d52ca58c2f236b1d71..0000000000000000000000000000000000000000
--- a/BaseLib/printList.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * \file
- * \author Thomas Fischer
- * \date   2011-02-23
- * \brief  Definition of the printList function.
- *
- * \copyright
- * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org)
- *            Distributed under a Modified BSD License.
- *              See accompanying file LICENSE.txt or
- *              http://www.opengeosys.org/project/license
- *
- */
-
-#ifndef PRINTLIST_H_
-#define PRINTLIST_H_
-
-// STL
-#include <list>
-#include <string>
-#include <iostream>
-
-namespace BaseLib {
-
-void printList (std::list<std::size_t> const& mylist, std::string const& title)
-{
-	std::cout << title << std::endl;
-	for (std::list<std::size_t>::const_iterator my_it (mylist.begin());
-		my_it != mylist.end(); my_it++) {
-		std::cout << *my_it << " ";
-	}
-	std::cout << std::endl;
-}
-
-} // end namespace BaseLib
-
-#endif /* PRINTLIST_H_ */
diff --git a/MathLib/EarClippingTriangulation.cpp b/MathLib/EarClippingTriangulation.cpp
index 5c4d6d46a273e0877ee004bc57005aed2ec8a6eb..ede63e70c3d45f96393b9498a009ca69e60c853a 100644
--- a/MathLib/EarClippingTriangulation.cpp
+++ b/MathLib/EarClippingTriangulation.cpp
@@ -16,7 +16,6 @@
 #include <vector>
 
 // BaseLib
-#include "printList.h"
 #include "uniqueInsert.h"
 
 // MathLib