Displaying differences for changeset
 
display as  

src/csip/sdm/SDMResultSet.java

@@ -78,7 +78,7 @@
 
     @Override
     public boolean absolute(int row) throws SQLException {
-        if ((row <= maxRows) && (row >= 0)) {
+        if ((row < maxRows - 1) && (row >= 0)) {
             this.row = row;
             return true;
         } else {