remove dead code from boolean operand
This commit is contained in:
parent
10df95bbcd
commit
b3bb6d6dd6
|
@ -84,7 +84,7 @@ public class StringTypeDescriptor extends AbstractTypeDescriptor<String> {
|
||||||
if ( Reader.class.isInstance( value ) ) {
|
if ( Reader.class.isInstance( value ) ) {
|
||||||
return DataHelper.extractString( (Reader) 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 );
|
return DataHelper.extractString( (Clob) value );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue