Skip to content

Commit

Permalink
Remove unnecessary protobuf check
Browse files Browse the repository at this point in the history
  • Loading branch information
daengi committed Oct 3, 2023
1 parent ea1567c commit 07258ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/at/esque/kafka/PublisherController.java
Expand Up @@ -126,8 +126,7 @@ private void setupControls(ObservableList<Integer> partitions, TopicMessageTypeC
}
}
}
if (MessageType.AVRO_TOPIC_RECORD_NAME_STRATEGY.equals(configForTopic.getValueType())
|| MessageType.PROTOBUF_SR.equals(configForTopic.getValueType())) {
if (MessageType.AVRO_TOPIC_RECORD_NAME_STRATEGY.equals(configForTopic.getValueType())) {
valueTypeSelectCombobox.setVisible(true);
if (topicMessageTypes == null) {
try {
Expand Down

0 comments on commit 07258ea

Please sign in to comment.