diff --git a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C
index d67b49e41eac72514c6110fc07c0f0cc04ee1597..8b09494fe87eba52a12b643b2b7b40b8d9359207 100644
--- a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C
+++ b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshConformToSurface.C
@@ -764,7 +764,7 @@ void Foam::conformalVoronoiMesh::buildParallelInterfaceIntersection
                 Foam::point b = topoint(dual(c2));
 
                 // Only if the dual edge cuts the boundary of this processor is
-                // it going to tbe counted.
+                // it going to be counted.
                 if (decomposition_().findLineAny(a, b).hit())
                 {
                     dE0.append(a);
@@ -778,15 +778,11 @@ void Foam::conformalVoronoiMesh::buildParallelInterfaceIntersection
         fIOuter++;
     }
 
-    timeCheck("buildParallelInterfaceIntersection before intersectsProc");
-
     // Preform intersections in both directions, as there is no sense
     // associated with the Dual edge
     List<List<pointIndexHit> > intersectionForward(intersectsProc(dE0, dE1));
     List<List<pointIndexHit> > intersectionReverse(intersectsProc(dE1, dE0));
 
-    timeCheck("buildParallelInterfaceIntersection after intersectsProc");
-
     // Reset counter
     fIOuter = 0;
 
@@ -994,7 +990,7 @@ void Foam::conformalVoronoiMesh::buildParallelInterfaceInfluence
 
             // Only if the circumsphere overlaps the boundary of this processor
             // is there a chance of it overlapping others
-            if (decomposition_().overlapsThisProcessor(cc, crSqr))
+            if (decomposition_().overlapsThisProcessor(cc, sqr(1.01)*crSqr))
             {
                 circumcentre.append(cc);
                 circumradiusSqr.append(crSqr);