diff src/main/java/org/monetdb/jdbc/MonetResultSet.java @ 414:1e278695fe54

Small improvements: adding some final keywords, removing unnecesary initialisations, improve comments.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 14 Jan 2021 22:44:56 +0100 (2021-01-14)
parents bf9f6b6ecf40
children 50e43af49d47
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetResultSet.java
+++ b/src/main/java/org/monetdb/jdbc/MonetResultSet.java
@@ -90,7 +90,7 @@ public class MonetResultSet
 	/** The number of rows in this ResultSet */
 	protected final long tupleCount;
 	/** The current position of the cursor for this ResultSet object */
-	protected int curRow = 0;
+	protected int curRow;
 
 	/** The type of this ResultSet (forward or scrollable) */
 	private int type = DEF_RESULTSETTYPE;