diff --git a/Source/EmbeddedBoundary/EmbeddedBoundaryInit.cpp b/Source/EmbeddedBoundary/EmbeddedBoundaryInit.cpp index 2fe121cdb3e..9b113dfe004 100644 --- a/Source/EmbeddedBoundary/EmbeddedBoundaryInit.cpp +++ b/Source/EmbeddedBoundary/EmbeddedBoundaryInit.cpp @@ -181,7 +181,7 @@ web::MarkUpdateCellsStairCase ( // these are the neighboring cells for the nodal gripoint at index i. // If `eb_update_arr` is cell-centerd in a given direction, we only need to check // the cell at the same position (e.g., in the first dimension: the cell at index i). -/* + int const i_start = ( index_type.nodeCentered(0) )? i-1 : i; #if AMREX_SPACEDIM > 1 int const j_start = ( index_type.nodeCentered(1) )? j-1 : j; @@ -193,11 +193,6 @@ web::MarkUpdateCellsStairCase ( #else int const k_start = k; #endif -*/ - // quick fix for Hybrid solver with EB - int const i_start = i; - int const j_start = j; - int const k_start = k; // Loop over neighboring cells int eb_update_flag = 1;