@@ -286,7 +286,6 @@ void HorzMesh::createDimensions(Decomp *MeshDecomp) {
286286// Initialize the parallel IO decompositions for the mesh variables
287287void HorzMesh::initParallelIO (Decomp *MeshDecomp) {
288288
289- I4 Err;
290289 I4 NDims = 1 ;
291290 IO ::Rearranger Rearr = IO ::RearrBox;
292291
@@ -319,8 +318,6 @@ void HorzMesh::initParallelIO(Decomp *MeshDecomp) {
319318
320319 VertexDecompR8 = IO::createDecomp (IO ::IOTypeR8, NDims, VertexDims,
321320 NVerticesAll, VertexID, Rearr);
322- if (Err != 0 )
323- LOG_CRITICAL (" HorzMesh: error creating vertex IO decomposition" );
324321
325322 // Create the IO decomp for arrays with (NEdges, 2*MaxEdges) dimensions
326323 NDims = 2 ;
@@ -338,8 +335,6 @@ void HorzMesh::initParallelIO(Decomp *MeshDecomp) {
338335
339336 OnEdgeDecompR8 = IO::createDecomp (IO ::IOTypeR8, NDims, OnEdgeDims2,
340337 OnEdgeSize2, OnEdgeOffset2, Rearr);
341- if (Err != 0 )
342- LOG_CRITICAL (" HorzMesh: error creating OnEdge IO decomposition" );
343338
344339 // Create the IO decomp for arrays with (NVertices, VertexDegree) dimensions
345340 std::vector<I4 > OnVertexDims{MeshDecomp->NVerticesGlobal , VertexDegree};
@@ -354,8 +349,6 @@ void HorzMesh::initParallelIO(Decomp *MeshDecomp) {
354349
355350 OnVertexDecompR8 = IO::createDecomp (IO ::IOTypeR8, NDims, OnVertexDims,
356351 OnVertexSize, OnVertexOffset, Rearr);
357- if (Err != 0 )
358- LOG_CRITICAL (" HorzMesh: error creating OnVertex IO decomposition" );
359352
360353} // end initParallelIO
361354
0 commit comments