From: <one...@us...> - 2002-12-31 08:22:32
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/type In directory sc8-pr-cvs1:/tmp/cvs-serv30547/cirrus/hibernate/type Modified Files: NullableType.java Log Message: fixed an NPE that occurred on IBM JVM nest InvocationTargetExceptions Index: NullableType.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/type/NullableType.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** NullableType.java 25 Dec 2002 06:47:11 -0000 1.30 --- NullableType.java 31 Dec 2002 08:22:29 -0000 1.31 *************** *** 13,16 **** --- 13,17 ---- import cirrus.hibernate.engine.SessionFactoryImplementor; import cirrus.hibernate.engine.SessionImplementor; + import cirrus.hibernate.helpers.StringHelper; /** *************** *** 19,23 **** public abstract class NullableType extends AbstractType { ! private static final Log log = LogFactory.getLog( Type.class.getPackage().getName() ); public abstract Object get(ResultSet rs, String name) throws HibernateException, SQLException; --- 20,24 ---- public abstract class NullableType extends AbstractType { ! private static final Log log = LogFactory.getLog( StringHelper.qualifier( Type.class.getName() ) ); public abstract Object get(ResultSet rs, String name) throws HibernateException, SQLException; |