Author: sebb
Date: Fri Jul 24 18:34:49 2009
New Revision: 797598
URL: http://svn.apache.org/viewvc?rev=797598&view=rev
Log:
No need for variables to be default accessible
Modified:
jakarta/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
Modified:
jakarta/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java?rev=797598&r1=797597&r2=797598&view=diff
==============================================================================
---
jakarta/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
(original)
+++
jakarta/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
Fri Jul 24 18:34:49 2009
@@ -49,17 +49,17 @@
private static final long serialVersionUID = 233L;
- transient String dataSource, driver, dbUrl, username, password,
checkQuery, poolMax, connectionAge, timeout,
+ private transient String dataSource, driver, dbUrl, username, password,
checkQuery, poolMax, connectionAge, timeout,
trimInterval;
- transient boolean keepAlive, autocommit;
+ private transient boolean keepAlive, autocommit;
/*
* The datasource is set up by testStarted and cleared by testEnded.
* These are called from different threads, so access must be
synchronized.
* The same instance is called in each case.
*/
- transient ResourceLimitingJdbcDataSource excaliburSource;
+ private transient ResourceLimitingJdbcDataSource excaliburSource;
// Keep a record of the pre-thread pools so that they can be disposed of
at the end of a test
private transient Set perThreadPoolSet;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]