diff --git a/src/language/algorithms/HeatDiamondAlgorithm.cpp b/src/language/algorithms/HeatDiamondAlgorithm.cpp
index 306c31152e5e41348c84244d9a9b268f0218b0ef..3a30d04856e21eb5099456d39729d96ca4f9bcdb 100644
--- a/src/language/algorithms/HeatDiamondAlgorithm.cpp
+++ b/src/language/algorithms/HeatDiamondAlgorithm.cpp
@@ -461,7 +461,6 @@ HeatDiamondScheme<Dimension>::HeatDiamondScheme(
           });
         return computedClj;
       }();
-      std::cout << my_timer.seconds() << "\n";
 
       FaceValue<TinyVector<Dimension>> nlj = [&] {
         FaceValue<TinyVector<Dimension>> computedNlj{mesh->connectivity()};
diff --git a/src/mesh/MeshData.hpp b/src/mesh/MeshData.hpp
index 6d767e6bee0a96dba8b2e383fc182e7c47d9ba49..502a61c6aaa9cafbe9600944d9c4d2f5d3986231 100644
--- a/src/mesh/MeshData.hpp
+++ b/src/mesh/MeshData.hpp
@@ -67,18 +67,6 @@ class MeshData : public IMeshData
           lenght      = l2Norm(normal);
           ll[face_id] = lenght;
         });
-      // parallel_for(
-      //   m_mesh.numberOfFaces(), PUGS_LAMBDA(FaceId face_id) {
-      //     const auto& face_nodes = face_to_node_matrix[face_id];
-
-      //     double lenght = 0;
-      //     for (size_t i_node = 0; i_node < face_nodes.size(); ++i_node) {
-      //       lenght += l2Norm(Nlr(face_id, i_node));
-      //     }
-
-      //     ll[face_id] = lenght;
-      //   });
-
       m_ll = ll;
     }
   }