diff src/main/java/org/monetdb/jdbc/MonetResultSet.java @ 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 b3c876a0d61f
children 95d15f1d750d
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) {