diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc
index 41e0e921fbf2553b315c644724fb58266de0cb7e..264232029bde5da500407b1609b58a921a128c8e 100644
--- a/AMDiS/src/parallel/MeshDistributor.cc
+++ b/AMDiS/src/parallel/MeshDistributor.cc
@@ -457,7 +457,6 @@ namespace AMDiS {
       deserialized = true;
     }
 
-    MSG("PUSH BACK THAT SHITT!\n");
     problemStat.push_back(probStat);
 
     // If the mesh distributor is already initialized, don't forget to set rank
diff --git a/AMDiS/src/parallel/MpiHelper.h b/AMDiS/src/parallel/MpiHelper.h
index 81fb5dddc9d327cdfefa097eccdb58909dd26c2e..3f0c5c20a35b651829a89d96ba1446af8e63b528 100644
--- a/AMDiS/src/parallel/MpiHelper.h
+++ b/AMDiS/src/parallel/MpiHelper.h
@@ -25,6 +25,7 @@
 
 #ifdef HAVE_PARALLEL_DOMAIN_AMDIS
 
+#include "Global.h"
 #include <time.h>
 #include <stdlib.h>
 #include <mpi.h>
@@ -37,7 +38,8 @@ namespace AMDiS {
     void globalAdd(int &value);
     
     template<typename T>
-    void globalAdd(T &value) {
+    void globalAdd(T &value) 
+    {
       WARNING("Unknown type for globalAdd. Can not sum up the values of all processors!\n");
     }
 
@@ -46,7 +48,8 @@ namespace AMDiS {
     void globalMin(int &value);
 
     template<typename T>
-    void globalMin(T &value) {
+    void globalMin(T &value) 
+    {
       WARNING("Unknown type for globalMin. Can not determine minimal value of all processors!\n");
     }
     
@@ -55,7 +58,8 @@ namespace AMDiS {
     void globalMax(int &value);
 
     template<typename T>
-    void globalMax(T &value) {
+    void globalMax(T &value) 
+    {
       WARNING("Unknown type for globalMax. Can not determine maximal value of all processors!\n");
     }
     
diff --git a/AMDiS/src/parallel/PeriodicMap.cc b/AMDiS/src/parallel/PeriodicMap.cc
index d7a54b6f8f84f1d33839281d89c83a7beecc3896..8d7af1502d2b6e16b2f411e7cef82c3594a5b320 100644
--- a/AMDiS/src/parallel/PeriodicMap.cc
+++ b/AMDiS/src/parallel/PeriodicMap.cc
@@ -22,10 +22,8 @@ namespace AMDiS {
     
     for (PeriodicDofMap::iterator it = newMap.begin(); it != newMap.end(); ++it)
       for (DofMapping::iterator dofIt =it->second.begin();
-	   dofIt != it->second.end(); ++dofIt) {
+	   dofIt != it->second.end(); ++dofIt)
 	add(feSpace, it->first, dofIt->second, dofIt->first);
-	//	MSG("ADD MAP %d %d with type %d\n", dofIt->second, dofIt->first, it->first);
-      }
   }