From d0289379253a0d38d2a0bc144f3f0ea8ef622d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Fri, 8 Oct 2021 12:44:27 +0200 Subject: [PATCH] Remove Unused 'Comm' Parameter Remnant from ealier refactoring work. --- opm/simulators/utils/readDeck.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/opm/simulators/utils/readDeck.cpp b/opm/simulators/utils/readDeck.cpp index 75ae34507..fea593c4e 100644 --- a/opm/simulators/utils/readDeck.cpp +++ b/opm/simulators/utils/readDeck.cpp @@ -169,8 +169,7 @@ namespace { actionState->load_rst((*schedule)[report_step].actions(), rst_state); } - void createNonRestartDynamicObjects(Opm::Parallel::Communication comm, - const Opm::Deck& deck, + void createNonRestartDynamicObjects(const Opm::Deck& deck, const Opm::EclipseState& eclipseState, const Opm::ParseContext& parseContext, std::shared_ptr python, @@ -270,7 +269,7 @@ namespace { errorGuard); } else { - createNonRestartDynamicObjects(comm, *deck, *eclipseState, + createNonRestartDynamicObjects(*deck, *eclipseState, *parseContext, std::move(python), schedule, udqState, actionState, errorGuard);