PerformScan: Eliminate else-after-return in getRecordName()

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Change-Id: I0d7d534089f8994d9f248344df6dffd475d977f1
diff --git a/src/PerformScan.cpp b/src/PerformScan.cpp
index 8336af7..1f87c57 100644
--- a/src/PerformScan.cpp
+++ b/src/PerformScan.cpp
@@ -230,10 +230,8 @@
     {
         return probeName + device.dump();
     }
-    else
-    {
-        return std::to_string(hash);
-    }
+
+    return std::to_string(hash);
 }
 
 PerformScan::PerformScan(nlohmann::json& systemConfiguration,