Description
In TopicCommand, there are a lot of redundant if/else statements, such as
```val ifNotExists = if (opts.options.has(opts.ifNotExistsOpt)) true else false```
We can refactor it as the following statement:
```val ifNotExists = opts.options.has(opts.ifNotExistsOpt)```
Attachments
Issue Links
- links to