Remove logically dead code

This code path is subtle, but given that slotPresent is only set to true
if totalCores is incremented, there's no way to actually hit this
section of code.

Looking for input on if this is the right behavior.

Change-Id: Ie6dadd2c7a0ca6b8402148ddd9b8a369a4a38b2e
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/redfish-core/lib/processor.hpp b/redfish-core/lib/processor.hpp
index 5c229f4..7b22c86 100644
--- a/redfish-core/lib/processor.hpp
+++ b/redfish-core/lib/processor.hpp
@@ -282,12 +282,6 @@
         // count is zero, then it has a higher precedence.
         if (slotPresent)
         {
-            if (totalCores == 0)
-            {
-                // Slot is not populated, set status end return
-                asyncResp->res.jsonValue["Status"]["State"] = "Absent";
-                asyncResp->res.jsonValue["Status"]["Health"] = "OK";
-            }
             asyncResp->res.jsonValue["TotalCores"] = totalCores;
         }
         return;