From 8145d98eb44cd5b047f3f858f925ebaac7051568 Mon Sep 17 00:00:00 2001
From: David Andrs <david.andrs@inl.gov>
Date: Wed, 8 Jun 2011 11:02:30 -0600
Subject: [PATCH] Fixing TransientSystem::re_update

---
 src/systems/transient_system.C |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/systems/transient_system.C b/src/systems/transient_system.C
index 4ccc628..905eddb 100644
--- a/src/systems/transient_system.C
+++ b/src/systems/transient_system.C
@@ -149,9 +149,9 @@ void TransientSystem<Base>::re_update ()
 
   // Even if we don't have to do anything ourselves, localize() may
   // use parallel_only tools
-  // if (first_local_dof == end_local_dof)
-  //   return;
-  
+  if (first_local_dof == end_local_dof)
+    return;
+
   // Update the old & older solutions with the send_list,
   // which may have changed since their last update.
   older_local_solution->localize (first_local_dof,
-- 
1.6.5.1

