remove dead code from boolean operand

This commit is contained in:
Sanne Grinovero 2012-02-14 18:27:05 +00:00
parent 10df95bbcd
commit b3bb6d6dd6
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class StringTypeDescriptor extends AbstractTypeDescriptor<String> {
if ( Reader.class.isInstance( value ) ) {
return DataHelper.extractString( (Reader) value );
}
if ( Clob.class.isInstance( value ) || DataHelper.isNClob( value.getClass() ) ) {
if ( Clob.class.isInstance( value ) ) {
return DataHelper.extractString( (Clob) value );
}