You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by "Guozhang Wang (JIRA)" <ji...@apache.org> on 2017/11/19 19:02:00 UTC

[jira] [Assigned] (KAFKA-6233) Removed unnecessary null check

     [ https://issues.apache.org/jira/browse/KAFKA-6233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guozhang Wang reassigned KAFKA-6233:
------------------------------------

    Assignee: sagar sukhadev chavan

> 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
>            Assignee: sagar sukhadev chavan
>            Priority: Trivial
>             Fix For: 1.1.0
>
>
> 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)