Mercurial > hg > monetdb-java
changeset 418:6558ab0d2547
Remove double space from msg.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 28 Jan 2021 21:34:43 +0100 (2021-01-28) |
parents | fb4c8d59699a |
children | d9f9e077cd03 |
files | src/main/java/org/monetdb/jdbc/MonetResultSet.java |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetResultSet.java +++ b/src/main/java/org/monetdb/jdbc/MonetResultSet.java @@ -245,8 +245,7 @@ public class MonetResultSet public boolean absolute(int row) throws SQLException { checkNotClosed(); if (row != curRow + 1 && type == TYPE_FORWARD_ONLY) - throw new SQLException("(Absolute) positioning not allowed on forward " + - " only result sets!", "M1M05"); + throw new SQLException("(Absolute) positioning not allowed on forward only result sets!", "M1M05"); // first calculate what the JDBC row is if (row < 0) {