HHH-5415 - org.hibernate.type.descriptor.java.DataHelper dumping "NClob not found" exception to stderr

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20068 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2010-07-26 16:53:33 +00:00
parent 33f05cd487
commit 94b394f58d
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ import org.hibernate.HibernateException;
import org.hibernate.util.ReflectHelper;
/**
* TODO : javadoc
* A help for dealing with BLOB and CLOB data
*
* @author Steve Ebersole
*/
@ -49,7 +49,7 @@ public class DataHelper {
nClobClass = ReflectHelper.classForName( "java.sql.NClob", DataHelper.class );
}
catch ( ClassNotFoundException e ) {
e.printStackTrace();
log.info( "Could not locate 'java.sql.NClob' class; assuming JDBC 3" );
}
}