Index: /xmlTools/trunk/posUpdate/Program.cs
===================================================================
--- /xmlTools/trunk/posUpdate/Program.cs	(revision 717)
+++ /xmlTools/trunk/posUpdate/Program.cs	(revision 718)
@@ -45,9 +45,4 @@
         static void Main(string[] args)
         {
-            //long ticksThisTime = 0;
-            //System.Diagnostics.Stopwatch timePerParse = System.Diagnostics.Stopwatch.StartNew();
-
-         
-           
             try
             {
@@ -59,14 +54,4 @@
                 printAppError(appErrors.ERROR_PARAMS, "Error processing parameters:\n" + e.ToString());
             }
-
-            
-
-            //// Stop the timer, and save the 
-            //// elapsed ticks for the operation.
-
-            //timePerParse.Stop();
-            //ticksThisTime = timePerParse.ElapsedTicks;
-            //Console.WriteLine(ticksThisTime);
-            //Console.ReadLine();
         }
     }
Index: /xmlTools/trunk/posUpdate/Util.cs
===================================================================
--- /xmlTools/trunk/posUpdate/Util.cs	(revision 717)
+++ /xmlTools/trunk/posUpdate/Util.cs	(revision 718)
@@ -19,13 +19,13 @@
         static public bool backupFile(string file)
         {
-            //try
-            //{
-            //    System.IO.File.Copy(file, file + ".bak", false); //make a backup first //false is to not override already created backups
-            //}
-            //catch (Exception e)
-            //{
-            //    Program.printAppError(Program.appErrors.BACKUPS_ALREADY_EXISTS, "Couldn't backup file " + file + " :\n" + e.Message);
-            //    return false;
-            //}
+            try
+            {
+                System.IO.File.Copy(file, file + ".bak", false); //make a backup first //false is to not override already created backups
+            }
+            catch (Exception e)
+            {
+                Program.printAppError(Program.appErrors.BACKUPS_ALREADY_EXISTS, "Couldn't backup file " + file + " :\n" + e.Message);
+                return false;
+            }
             return true;
         }
