[ https://issues.apache.org/jira/browse/KAFKA-6233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
sagar sukhadev chavan updated KAFKA-6233: ----------------------------------------- Issue Type: Improvement (was: New Feature) > Removed unnecessary null check > ------------------------------ > > Key: KAFKA-6233 > URL: https://issues.apache.org/jira/browse/KAFKA-6233 > Project: Kafka > Issue Type: Improvement > Components: clients > Affects Versions: 0.10.1.1, 0.10.2.1, 1.0.0, 0.11.0.2 > 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)