Delete performance benchmarks, they are now hosted as a separate github repository.

pull/41/head
Brett Wooldridge 11 years ago
parent ab94cf4967
commit aea65f9ccb

@ -6,7 +6,7 @@ import java.util.ArrayList;
import org.junit.Assert;
import org.junit.Test;
import com.zaxxer.hikari.performance.StubStatement;
import com.zaxxer.hikari.mocks.StubStatement;
import com.zaxxer.hikari.util.FastStatementList;
public class TestFastStatementList
@ -19,7 +19,7 @@ public class TestFastStatementList
FastStatementList list = new FastStatementList();
for (int i = 0; i < 100; i++)
{
StubStatement statement = new StubStatement();
StubStatement statement = new StubStatement(null);
list.add(statement);
verifyList.add(statement);
}

Loading…
Cancel
Save