From 0ecfc7de48c0beabe787765954abb99a407f3b94 Mon Sep 17 00:00:00 2001
From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de>
Date: Fri, 26 Oct 2012 11:01:41 +0000
Subject: [PATCH] [BoxAssembler] Replace a continue with else, this code should
 be a bit easier to read. (reviewed by bernd)

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9450 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/boxmodels/common/boxassembler.hh | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/dumux/boxmodels/common/boxassembler.hh b/dumux/boxmodels/common/boxassembler.hh
index b21916628d..18e196c3e8 100644
--- a/dumux/boxmodels/common/boxassembler.hh
+++ b/dumux/boxmodels/common/boxassembler.hh
@@ -574,18 +574,19 @@ private:
                     int globalI = vertexMapper_().map(*eIt, i, dim);
                     neighbors[globalI].insert(globalI);
                 }
-                continue;
             }
-
-            // loop over all element vertices
-            for (int i = 0; i < numVerticesLocal - 1; ++i) {
-                int globalI = vertexMapper_().map(*eIt, i, dim);
-                for (int j = i + 1; j < numVerticesLocal; ++j) {
-                    int globalJ = vertexMapper_().map(*eIt, j, dim);
-                    // make sure that vertex j is in the neighbor set
-                    // of vertex i and vice-versa
-                    neighbors[globalI].insert(globalJ);
-                    neighbors[globalJ].insert(globalI);
+            else
+            {
+                // loop over all element vertices
+                for (int i = 0; i < numVerticesLocal - 1; ++i) {
+                    int globalI = vertexMapper_().map(*eIt, i, dim);
+                    for (int j = i + 1; j < numVerticesLocal; ++j) {
+                        int globalJ = vertexMapper_().map(*eIt, j, dim);
+                        // make sure that vertex j is in the neighbor set
+                        // of vertex i and vice-versa
+                        neighbors[globalI].insert(globalJ);
+                        neighbors[globalJ].insert(globalI);
+                    }
                 }
             }
         }
-- 
GitLab