Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/jdbc/MonetStatement.java @ 819:726a1d7b168c
correct indentation
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Wed, 13 Dec 2023 20:00:30 +0100 (17 months ago) |
parents | 93b256bf29a7 |
children | e890195256ac |
comparison
equal
deleted
inserted
replaced
818:4117aa40a6b9 | 819:726a1d7b168c |
---|---|
1569 | 1569 |
1570 // see if we have the row | 1570 // see if we have the row |
1571 if (row < 1 || row > tupleCount) | 1571 if (row < 1 || row > tupleCount) |
1572 return false; | 1572 return false; |
1573 | 1573 |
1574 System.arraycopy(results[row - 1], 0, tlp.values, 0, results[row - 1].length); | 1574 System.arraycopy(results[row - 1], 0, tlp.values, 0, results[row - 1].length); |
1575 | 1575 |
1576 return true; | 1576 return true; |
1577 } | 1577 } |
1578 | 1578 |
1579 /** | 1579 /** |