Ninja: remove redundant check for null

This commit is contained in:
Tyler Hobbs 2014-05-28 16:59:06 -05:00
parent 04ba46231d
commit d92a79f5b3
1 changed files with 0 additions and 3 deletions

View File

@ -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);
}
}