From c3dbd765151d70d309682d29e5356a5d9be35509 Mon Sep 17 00:00:00 2001
From: "Dmitry Yu. Naumov" <github@naumov.de>
Date: Mon, 17 Sep 2018 17:42:23 +0200
Subject: [PATCH] [MatL] SolidModels; remove else case after return.

---
 .../SolidModels/CreateConstitutiveRelation.cpp     | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/MaterialLib/SolidModels/CreateConstitutiveRelation.cpp b/MaterialLib/SolidModels/CreateConstitutiveRelation.cpp
index 5eeb33636f4..41a0002acdb 100644
--- a/MaterialLib/SolidModels/CreateConstitutiveRelation.cpp
+++ b/MaterialLib/SolidModels/CreateConstitutiveRelation.cpp
@@ -46,29 +46,25 @@ createConstitutiveRelation(
         return MaterialLib::Solids::Ehlers::createEhlers<DisplacementDim>(
             parameters, constitutive_relation_config);
     }
-    else if (type == "LinearElasticIsotropic")
+    if (type == "LinearElasticIsotropic")
     {
         const bool skip_type_checking = false;
         return MaterialLib::Solids::createLinearElasticIsotropic<
             DisplacementDim>(
             parameters, constitutive_relation_config, skip_type_checking);
     }
-    else if (type == "Lubby2")
+    if (type == "Lubby2")
     {
         return MaterialLib::Solids::Lubby2::createLubby2<DisplacementDim>(
             parameters, constitutive_relation_config);
     }
-    else if (type == "CreepBGRa")
+    if (type == "CreepBGRa")
     {
         return MaterialLib::Solids::Creep::createCreepBGRa<DisplacementDim>(
             parameters, constitutive_relation_config);
     }
-    else
-    {
-        OGS_FATAL(
-            "Cannot construct constitutive relation of given type \'%s\'.",
-            type.c_str());
-    }
+    OGS_FATAL("Cannot construct constitutive relation of given type \'%s\'.",
+              type.c_str());
 }
 
 template std::unique_ptr<MaterialLib::Solids::MechanicsBase<2>>
-- 
GitLab