]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/MEDCoupling/MEDCouplingMemArrayChar.cxx
Salome HOME
refactor!: remove adm_local/ directory
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingMemArrayChar.cxx
index 3acb7faf17d30e8e73382c7df4b125519854f588..90b42eb1db109d373ed0c16eb6082cc3a5050d72 100755 (executable)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2020  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -397,15 +397,12 @@ DataArrayIdType *DataArrayChar::findIdsInRange(char vmin, char vmax) const
 
 /*!
  * Returns a new DataArrayChar by concatenating two given arrays, so that (1) the number
- * of tuples in the result array is <em> a1->getNumberOfTuples() + a2->getNumberOfTuples() -
- * offsetA2</em> and (2)
+ * of tuples in the result array is <em> a1->getNumberOfTuples() + a2->getNumberOfTuples() </em> and (2)
  * the number of component in the result array is same as that of each of given arrays.
- * First \a offsetA2 tuples of \a a2 are skipped and thus are missing from the result array.
  * Info on components is copied from the first of the given arrays. Number of components
  * in the given arrays must be the same.
  *  \param [in] a1 - an array to include in the result array.
  *  \param [in] a2 - another array to include in the result array.
- *  \param [in] offsetA2 - number of tuples of \a a2 to skip.
  *  \return DataArrayChar * - the new instance of DataArrayChar.
  *          The caller is to delete this result array using decrRef() as it is no more
  *          needed.