From b4603515f8734c6aaf100239423b1229d3c8db04 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Thu, 11 Jul 2013 15:44:10 +0000
Subject: [PATCH] remove trailing whitespace

[[Imported from SVN: r9300]]
---
 dune/gfe/maxnormtrustregion.hh | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dune/gfe/maxnormtrustregion.hh b/dune/gfe/maxnormtrustregion.hh
index a21f973f..69a1aef9 100644
--- a/dune/gfe/maxnormtrustregion.hh
+++ b/dune/gfe/maxnormtrustregion.hh
@@ -10,7 +10,7 @@ class MaxNormTrustRegion
 {
 public:
 
-    MaxNormTrustRegion(size_t size, double initialRadius) 
+    MaxNormTrustRegion(size_t size, double initialRadius)
         : obstacles_(size)
     {
         set(initialRadius);
@@ -21,12 +21,12 @@ public:
         for (size_t i=0; i<obstacles_.size(); i++) {
 
             for (int k=0; k<blocksize; k++) {
-                
+
                 obstacles_[i].lower(k) = -radius;
                 obstacles_[i].upper(k) =  radius;
-                
+
             }
-            
+
         }
 
     }
@@ -40,14 +40,14 @@ public:
     void scale(double factor) {
 
         for (size_t i=0; i<obstacles_.size(); i++) {
-            
+
             for (int k=0; k<blocksize; k++) {
-                
+
                 obstacles_[i].lower(k) *= factor;
                 obstacles_[i].upper(k) *= factor;
-                
+
             }
-            
+
         }
 
     }
-- 
GitLab