From 51342f6ef388488a8ea47444c0a24247e3c3b5e6 Mon Sep 17 00:00:00 2001 From: Kamyar Sajjadi Date: Fri, 18 Jan 2013 15:52:50 +0100 Subject: [PATCH] HHH-7520 - now the implementation and the javadoc should be the same --- .../src/main/java/org/hibernate/engine/jdbc/BlobProxy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/main/java/org/hibernate/engine/jdbc/BlobProxy.java b/hibernate-core/src/main/java/org/hibernate/engine/jdbc/BlobProxy.java index 0bc01a7eee..563b2614d1 100644 --- a/hibernate-core/src/main/java/org/hibernate/engine/jdbc/BlobProxy.java +++ b/hibernate-core/src/main/java/org/hibernate/engine/jdbc/BlobProxy.java @@ -90,8 +90,8 @@ public class BlobProxy implements InvocationHandler { /** * {@inheritDoc} * - * @throws UnsupportedOperationException if any methods other than {@link Blob#length()} - * or {@link Blob#getBinaryStream} are invoked. + * @throws UnsupportedOperationException if any methods other than {@link Blob#length} + * , {@link Blob#getBinaryStream}, {@link Blob#getBytes} or {@link Blob#free} are invoked. */ @Override @SuppressWarnings({ "UnnecessaryBoxing" })