Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/jdbc/MonetBlob.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 | 1344603ee8af |
children | e890195256ac |
comparison
equal
deleted
inserted
replaced
818:4117aa40a6b9 | 819:726a1d7b168c |
---|---|
297 } | 297 } |
298 | 298 |
299 try { | 299 try { |
300 offset--; | 300 offset--; |
301 /* transactions? what are you talking about? */ | 301 /* transactions? what are you talking about? */ |
302 if (len - (int) pos >= 0) | 302 if (len - (int) pos >= 0) |
303 System.arraycopy(bytes, offset + (int) pos, buf, (int) pos, len - (int) pos); | 303 System.arraycopy(bytes, offset + (int) pos, buf, (int) pos, len - (int) pos); |
304 } catch (IndexOutOfBoundsException e) { | 304 } catch (IndexOutOfBoundsException e) { |
305 throw new SQLException(e.getMessage(), "M0M10"); | 305 throw new SQLException(e.getMessage(), "M0M10"); |
306 } | 306 } |
307 return len; | 307 return len; |
308 } | 308 } |