Salome HOME
updated copyright message
[modules/shaper.git] / src / GeomAPI / GeomAPI_Tools.cpp
index c15700df1cbc68621f0320f5efe17ae32116bc34..68c56e1d7f77d7e6234e19982036869ee5102bcb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "GeomAPI_Tools.h"
@@ -33,8 +32,6 @@ GeomShapePtr GeomAPI_Tools::getTypedShape(const GeomShapePtr& theShape)
 
   GeomShapePtr aTypedShape = theShape;
 
-  GeomAPI_Shape::ShapeType aType = theShape->shapeType();
-
   switch (theShape->shapeType()) {
   case GeomAPI_Shape::VERTEX:
     aTypedShape = GeomShapePtr(new GeomAPI_Vertex(theShape));
@@ -48,6 +45,8 @@ GeomShapePtr GeomAPI_Tools::getTypedShape(const GeomShapePtr& theShape)
   case GeomAPI_Shape::WIRE:
     aTypedShape = GeomShapePtr(new GeomAPI_Wire(theShape));
     break;
+  default:
+    break;
   }
 
   return aTypedShape;