Remove unnecessary optimisation that the JIT will perform anyway.

pull/35/head
Brett Wooldridge 11 years ago
parent 6a75c00708
commit e6cf087321

@ -175,8 +175,7 @@ public abstract class ConnectionProxy implements IHikariConnectionProxy
try
{
// Faster than an iterator most times
final int length = openStatements.size();
for (int i = 0; i < length; i++)
for (int i = 0; i < openStatements.size(); i++)
{
try
{

Loading…
Cancel
Save