No effective change - Code cleanup, convert unnecessary fields to local vars

This commit is contained in:
Robin Bygrave
2015-07-31 13:00:53 +12:00
parent b9aa76c367
commit 8a3d9edd34
12 changed files with 14 additions and 50 deletions
@@ -54,8 +54,6 @@ public class CQueryRowCount {
private String bindLog;
private long startNano;
private int executionTimeMicros;
private int rowCount;
@@ -112,7 +110,7 @@ public class CQueryRowCount {
*/
public int findRowCount() throws SQLException {
startNano = System.nanoTime();
long startNano = System.nanoTime();
try {
SpiTransaction t = request.getTransaction();