Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Montrieux committed Sep 16, 2019
1 parent 89b80aa commit d202748
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,8 @@ private boolean hasNonDeletableSubscriptions(final String eventTypeName) {
while (!subs.isEmpty()) {
for (final Subscription sub : subs) {
if (!sub.getConsumerGroup().equals(nakadiSettings.getDeletableSubscriptionConsumerGroup())
|| !sub.getOwningApplication().equals(nakadiSettings.getDeletableSubscriptionOwningApplication())) {
|| !sub.getOwningApplication()
.equals(nakadiSettings.getDeletableSubscriptionOwningApplication())) {
return true;
}
}
Expand Down

0 comments on commit d202748

Please sign in to comment.