HHH-7520 BlobProxy.invoke Javadoc is incorrect

This commit is contained in:
Brett Meyer 2013-01-22 19:05:08 -05:00
parent 51342f6ef3
commit 1aec3c1378
1 changed files with 4 additions and 2 deletions

View File

@ -90,8 +90,10 @@ public class BlobProxy implements InvocationHandler {
/**
* {@inheritDoc}
*
* @throws UnsupportedOperationException if any methods other than {@link Blob#length}
* , {@link Blob#getBinaryStream}, {@link Blob#getBytes} or {@link Blob#free} are invoked.
* @throws UnsupportedOperationException if any methods other than
* {@link Blob#length}, {@link Blob#getUnderlyingStream},
* {@link Blob#getBinaryStream}, {@link Blob#getBytes}, {@link Blob#free},
* or toString/equals/hashCode are invoked.
*/
@Override
@SuppressWarnings({ "UnnecessaryBoxing" })