diff --git a/MeshLib/MeshSearch/MeshElementGrid.h b/MeshLib/MeshSearch/MeshElementGrid.h
index 3cc0f96f5e26b97f90b913ad82e71843f8effe4b..9b260b719f9588299639fa3b3fc26c4ff937c4d0 100644
--- a/MeshLib/MeshSearch/MeshElementGrid.h
+++ b/MeshLib/MeshSearch/MeshElementGrid.h
@@ -56,24 +56,6 @@ public:
         auto const min_coords(getGridCellCoordinates(min));
         auto const max_coords(getGridCellCoordinates(max));
 
-        if (!min_coords.first) {
-            WARN(
-                "MeshElementGrid::getElementsInVolume: Min point (%f,%f,%f) "
-                "outside of MeshElementGrid [%f,%f) x [%f,%f) x [%f,%f).",
-                min[0], min[1], min[2], _aabb.getMinPoint()[0],
-                _aabb.getMaxPoint()[0], _aabb.getMinPoint()[1],
-                _aabb.getMaxPoint()[1], _aabb.getMinPoint()[2],
-                _aabb.getMaxPoint()[2]);
-        }
-        if (!max_coords.first) {
-            WARN(
-                "MeshElementGrid::getElementsInVolume: Max point (%f,%f,%f) "
-                "outside of MeshElementGrid [%f,%f) x [%f,%f) x [%f,%f).",
-                max[0], max[1], max[2], _aabb.getMinPoint()[0],
-                _aabb.getMaxPoint()[0], _aabb.getMinPoint()[1],
-                _aabb.getMaxPoint()[1], _aabb.getMinPoint()[2],
-                _aabb.getMaxPoint()[2]);
-        }
         std::vector<MeshLib::Element const*> elements_vec;
 
         const std::size_t n_plane(_n_steps[0]*_n_steps[1]);
@@ -90,6 +72,7 @@ public:
         return elements_vec;
     }
 
+
 private:
     void sortElementsInGridCells(MeshLib::Mesh const& sfc_mesh);
     bool sortElementInGridCells(MeshLib::Element const& element);