diff --git a/MeshLib/MeshLib.smp b/MeshLib/MeshLib.smp
deleted file mode 100644
index 78a97632073fcebd58afb5c3f352938621c664d0..0000000000000000000000000000000000000000
Binary files a/MeshLib/MeshLib.smp and /dev/null differ
diff --git a/MeshLib/MeshSurfaceExtraction.cpp b/MeshLib/MeshSurfaceExtraction.cpp
index da401144f0efe2bae90d31e6032a9471b913352a..26a499d3dcda154dc7a4c6c30f92e75a2abb73cc 100644
--- a/MeshLib/MeshSurfaceExtraction.cpp
+++ b/MeshLib/MeshSurfaceExtraction.cpp
@@ -66,10 +66,10 @@ void MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib::Mesh &mesh, st
 MeshLib::Mesh* MeshSurfaceExtraction::getMeshSurface(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle, bool keepOriginalNodeIds)
 {
 	if (angle< 0 ||  angle > 90) 
-    {
-        ERR ("Supported angle between 0 and 90 degrees only.");
-        return nullptr;
-    }
+	{
+	    ERR ("Supported angle between 0 and 90 degrees only.");
+	    return nullptr;
+	}
 
 	INFO ("Extracting mesh surface...");
 	const std::vector<MeshLib::Element*> all_elements (mesh.getElements());