From 4646860e4c72a3277189e2fb76a08b41589fa200 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Wed, 15 Jul 2015 11:27:27 +0200
Subject: [PATCH] [cleanup] Minor code simplification

---
 dune/istl/bcrsmatrix.hh | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dune/istl/bcrsmatrix.hh b/dune/istl/bcrsmatrix.hh
index 7f45b4b26..6965fc726 100644
--- a/dune/istl/bcrsmatrix.hh
+++ b/dune/istl/bcrsmatrix.hh
@@ -1031,10 +1031,7 @@ namespace Dune {
       //! return true if column index is in row
       bool contains (size_type j)
       {
-        if (pattern.find(j)!=pattern.end())
-          return true;
-        else
-          return false;
+        return pattern.find(j) != pattern.end();
       }
       /**
        * @brief Get the current row size.
-- 
GitLab