You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/07/22 20:13:22 UTC

[jmeter] branch master updated: fix trailing whitespace

This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new e8ad706  fix trailing whitespace
e8ad706 is described below

commit e8ad706fd2020d653dfa358e636e21aa7a7b6811
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Mon Jul 22 22:13:11 2019 +0200

    fix trailing whitespace
---
 .../org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java b/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
index 74e1fd3..3872f6b 100644
--- a/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
+++ b/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
@@ -294,8 +294,8 @@ public class DataSourceElement extends AbstractTestElement
         if(isPreinit()) {
             // side effect - connection pool init - that is what we want
             // see also https://commons.apache.org/proper/commons-dbcp/apidocs/org/apache/commons/dbcp2/BasicDataSource.html#setInitialSize-int-
-            // it says: "The pool is initialized the first time one of the following methods is invoked: 
-            //  getConnection, setLogwriter, setLoginTimeout, getLoginTimeout, getLogWriter."
+            // it says: "The pool is initialized the first time one of the following methods is invoked:
+            // getConnection, setLogwriter, setLoginTimeout, getLoginTimeout, getLogWriter."
             // so we get a connection and close it - which releases it back to the pool (but stays open)
             try {
                 dataSource.getConnection().close();