Salome HOME
new method MEDCouplingUMesh::computeNeighborsOfNodes
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingFieldOverTime.cxx
index 0edd77a3d8c71768777e6b1028a421dd07b029cb..bdba5d0b5dcb169a64540d0283f160e1f7eed98f 100644 (file)
@@ -83,19 +83,19 @@ std::string MEDCouplingFieldOverTime::simpleRepr() const
   std::vector<MEDCouplingMesh *> ms;
   std::vector<int> refms;
   try
-    {
+  {
       ms=getDifferentMeshes(refms);
       ret << ms.size() << "\n";
-    }
+  }
   catch(INTERP_KERNEL::Exception& /*e*/)
-    { ret << "Current instance is INVALID !\n"; }
+  { ret << "Current instance is INVALID !\n"; }
   try
-    {
+  {
       MEDCouplingDefinitionTime dt=getDefinitionTimeZone();
       dt.appendRepr(ret);
-    }
+  }
   catch(INTERP_KERNEL::Exception& /*e*/)
-    { ret << "Definition zone is INVALID !\n"; }
+  { ret << "Definition zone is INVALID !\n"; }
   return ret.str();
 }