sagar sukhadev chavan created KAFKA-6233:
--------------------------------------------
Summary: Removed unnecessary null check
Key: KAFKA-6233
URL: https://issues.apache.org/jira/browse/KAFKA-6233
Project: Kafka
Issue Type: New Feature
Components: clients
Affects Versions: 0.11.0.2, 1.0.0, 0.10.2.1, 0.10.1.1
Reporter: sagar sukhadev chavan
Priority: Trivial
Removed unnecessary null check
if (encodingValue != null && encodingValue instanceof String)
null instanceof String returns false hence replaced the check with
if (encodingValue instanceof String)
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)