]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/PrimitivesAPI/PrimitivesAPI_Box.cpp
Salome HOME
Suppressing white space at the end line.
[modules/shaper.git] / src / PrimitivesAPI / PrimitivesAPI_Box.cpp
index 3e3fb54c0d85e1dc84be92a59b77157f5e75079f..03fd6b9d39e88c91624ba0d6f20dadb4fa920684 100644 (file)
@@ -76,19 +76,17 @@ void PrimitivesAPI_Box::dump(ModelHighAPI_Dumper& theDumper) const
   theDumper << aBase << " = model.addBox(" << aDocName;
 
   std::string aCreationMethod = aBase->string(PrimitivesPlugin_Box::CREATION_METHOD())->value();
-  
+
   if(aCreationMethod == PrimitivesPlugin_Box::CREATION_METHOD_BY_DIMENSIONS()) {
     AttributeDoublePtr anAttrDx = aBase->real(PrimitivesPlugin_Box::DX_ID());
     AttributeDoublePtr anAttrDy = aBase->real(PrimitivesPlugin_Box::DY_ID());
     AttributeDoublePtr anAttrDz = aBase->real(PrimitivesPlugin_Box::DZ_ID());
-    
     theDumper << ", " << anAttrDx << ", " << anAttrDy << ", " << anAttrDz;
   } else if (aCreationMethod == PrimitivesPlugin_Box::CREATION_METHOD_BY_TWO_POINTS()) {
     AttributeSelectionPtr anAttrFirstPnt =
       aBase->selection(PrimitivesPlugin_Box::POINT_FIRST_ID());
     AttributeSelectionPtr anAttrSecondPnt =
       aBase->selection(PrimitivesPlugin_Box::POINT_SECOND_ID());
-
     theDumper << ", " << anAttrFirstPnt << ", " << anAttrSecondPnt;
   }