diff --git a/src/postProcessing/functionObjects/field/nearWallFields/nearWallFields.C b/src/postProcessing/functionObjects/field/nearWallFields/nearWallFields.C
index 383dd0be163ce0a7c169106eb0c72a4ce8054f99..36a5c2cfb0aba08c5d7fe200e6a988da08f29fb5 100644
--- a/src/postProcessing/functionObjects/field/nearWallFields/nearWallFields.C
+++ b/src/postProcessing/functionObjects/field/nearWallFields/nearWallFields.C
@@ -25,9 +25,6 @@ License
 
 #include "nearWallFields.H"
 #include "wordReList.H"
-//#include "volFields.H"
-//#include "selfContainedDirectMappedFixedValueFvPatchFields.H"
-//#include "interpolationCellPoint.H"
 
 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
 
@@ -152,6 +149,7 @@ void Foam::nearWallFields::write()
         Info<< "Writing sampled fields to " << obr_.time().timeName()
             << endl;
 
+        // Write fields
         forAll(vsf_, i)
         {
             vsf_[i].write();
diff --git a/src/postProcessing/functionObjects/field/nearWallFields/nearWallFieldsTemplates.C b/src/postProcessing/functionObjects/field/nearWallFields/nearWallFieldsTemplates.C
index 8f237edc12ef9d90ea763de5353de69886235937..0436d2ddbbb84c45a101e735de6ba758d6c40702 100644
--- a/src/postProcessing/functionObjects/field/nearWallFields/nearWallFieldsTemplates.C
+++ b/src/postProcessing/functionObjects/field/nearWallFields/nearWallFieldsTemplates.C
@@ -60,6 +60,7 @@ void Foam::nearWallFields::createFields
 
                 IOobject io(fld);
                 io.readOpt() = IOobject::NO_READ;
+                io.writeOpt() = IOobject::NO_WRITE;
                 io.rename(sampleFldName);
 
                 sflds.set(sz, new vfType(io, fld));