utility: Remove getInvService function
The getInvService function is no longer used and is not necessary with
the getService function within sdbusplus.hpp
Tested: N/A
Change-Id: Ibb2d55ef5be1852ae8ebd3dac32d66518d5d705c
Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
diff --git a/utility.cpp b/utility.cpp
index 249fe2f..1bb979e 100644
--- a/utility.cpp
+++ b/utility.cpp
@@ -29,12 +29,6 @@
using InternalFailure = sdbusplus::xyz::openbmc_project::Common::
Error::InternalFailure;
-std::string getInvService(sdbusplus::bus::bus& bus)
-{
- return getService(INVENTORY_PATH, INVENTORY_INTF, bus);
-}
-
-
std::string getService(const std::string& path,
const std::string& interface,
sdbusplus::bus::bus& bus)
diff --git a/utility.hpp b/utility.hpp
index bb23dea..fbae129 100644
--- a/utility.hpp
+++ b/utility.hpp
@@ -80,14 +80,6 @@
};
/**
- * @brief Get the inventory service name from the mapper object
- *
- * @return The inventory manager service name
- */
-std::string getInvService(sdbusplus::bus::bus& bus);
-
-
-/**
* @brief Get the service name from the mapper for the
* interface and path passed in.
*