diff --git a/applications/utilities/preProcessing/FoamX/lib/FoamX.jar b/applications/utilities/preProcessing/FoamX/lib/FoamX.jar
index 4d3458c80a2295ee19d8b05332f9a4c0dcc1594c..cf4f9c89d27346bd74dbe4e92fc20e8005a2b13d 100644
Binary files a/applications/utilities/preProcessing/FoamX/lib/FoamX.jar and b/applications/utilities/preProcessing/FoamX/lib/FoamX.jar differ
diff --git a/src/OpenFOAM/dimensionSet/dimensionSetIO.C b/src/OpenFOAM/dimensionSet/dimensionSetIO.C
index 36c760ea28a2bcedf8b1aed3ba1f19ad026a1ba5..0d05307ca838af6cead48c7a8c0c0b5cf33d179c 100644
--- a/src/OpenFOAM/dimensionSet/dimensionSetIO.C
+++ b/src/OpenFOAM/dimensionSet/dimensionSetIO.C
@@ -22,25 +22,14 @@ License
     along with OpenFOAM; if not, write to the Free Software Foundation,
     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
-Description
-    Dimension set for the base types.
-    This type may be used to implement rigorous dimension checking
-    for algebraic manipulation.
-
 \*---------------------------------------------------------------------------*/
 
 #include "dimensionSet.H"
 #include "IOstreams.H"
 
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
-namespace Foam
-{
-
 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
 
-// Construct from Istream
-dimensionSet::dimensionSet(Istream& is)
+Foam::dimensionSet::dimensionSet(Istream& is)
 {
     is >> *this;
 }
@@ -48,7 +37,7 @@ dimensionSet::dimensionSet(Istream& is)
 
 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
 
-Istream& operator>>(Istream& is, dimensionSet& dset)
+Foam::Istream& Foam::operator>>(Istream& is, dimensionSet& dset)
 {
     // Read begining of dimensionSet
     if (token(is) != token::BEGIN_SQR)
@@ -95,7 +84,7 @@ Istream& operator>>(Istream& is, dimensionSet& dset)
 }
 
 
-Ostream& operator<<(Ostream& os, const dimensionSet& dset)
+Foam::Ostream& Foam::operator<<(Ostream& os, const dimensionSet& dset)
 {
     os << token::BEGIN_SQR;
 
@@ -112,8 +101,4 @@ Ostream& operator<<(Ostream& os, const dimensionSet& dset)
 }
 
 
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
-} // End namespace Foam
-
 // ************************************************************************* //