diff geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/QueryExecutorBase.java @ 885:1c3efbd2fc5a

Removes trailing whitespace. geo-backend/trunk@850 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 07:49:16 +0000
parents 3cbf11c67fdc
children 8b442223741c
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/QueryExecutorBase.java	Fri Mar 26 15:23:03 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/QueryExecutorBase.java	Mon Mar 29 07:49:16 2010 +0000
@@ -29,7 +29,7 @@
     public QueryExecutorBase() {
         super();
     }
-    
+
     /**
      * This Method puts the Filtervalues into the Querystring
      * @param queryString the Query which should be manipulated
@@ -43,7 +43,7 @@
         }
         return returnValue;
     }
-    
+
     /**
      * This Methods converts the ResultSet into an Collection of Result-objects
      * @param resultSet the ResultSet which should be converted
@@ -52,7 +52,7 @@
      */
     protected Collection<Result> createResultCollection(ResultSet resultSet) throws SQLException{
         Collection<Result> returnValue =  new ArrayList<Result>();
-        
+
         ResultDescriptor resultDescriptor = null;
         int columns = -1;
 
@@ -68,9 +68,9 @@
                     resultDescriptor.addColumn(rsmd.getColumnName(i), rsmd.getColumnClassName(i));
                 }
             }
-            
+
             Result result = convertResult(resultSet, resultDescriptor);
-            
+
             returnValue.add(result);
         }
         return returnValue;

http://dive4elements.wald.intevation.org