mirror of https://github.com/apache/cassandra
Ninja: remove redundant check for null
This commit is contained in:
parent
04ba46231d
commit
d92a79f5b3
|
|
@ -308,9 +308,6 @@ public class Tuples
|
|||
public Value bind(List<ByteBuffer> values) throws InvalidRequestException
|
||||
{
|
||||
ByteBuffer value = values.get(bindIndex);
|
||||
if (value == null)
|
||||
return null;
|
||||
|
||||
return value == null ? null : Value.fromSerialized(value, (TupleType)receiver.type);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue