From 6660255be05c3f42069ceb5ee434bbb8ea24cd6e Mon Sep 17 00:00:00 2001
From: Dan Lipsa <dan.lipsa@kitware.com>
Date: Thu, 27 Feb 2025 17:25:34 -0500
Subject: [PATCH] Replace and with &&

---
 IO/NetCDF/vtkNetCDFReader.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/IO/NetCDF/vtkNetCDFReader.cxx b/IO/NetCDF/vtkNetCDFReader.cxx
index 1f56bf33200..59c929ed24d 100644
--- a/IO/NetCDF/vtkNetCDFReader.cxx
+++ b/IO/NetCDF/vtkNetCDFReader.cxx
@@ -743,7 +743,7 @@ int vtkNetCDFReader::FillVariableDimensions(int ncFD)
         break;
       }
     }
-    if (unique and dimEncoding != "()")
+    if (unique && dimEncoding != "()")
       this->AllDimensions->InsertNextValue(dimEncoding);
   }
 
-- 
GitLab