Removed unused rsIndex property

This commit is contained in:
Lukas Eder 2013-06-14 17:39:45 +02:00
parent 586f4ccae0
commit 4f62414b2a

View File

@ -93,7 +93,6 @@ class CursorImpl<R extends Record> implements Cursor<R> {
private boolean isClosed;
private transient CursorResultSet rs;
private transient int rsIndex;
private transient Iterator<R> iterator;
@SuppressWarnings("unchecked")
@ -1382,7 +1381,6 @@ class CursorImpl<R extends Record> implements Cursor<R> {
try {
if (!isClosed && rs.next()) {
++rsIndex;
// [#1296] Force a row-lock by updating the row if the
// FOR UPDATE clause is simulated