Skip to content

Commit

Permalink
SKYEDEN-3271 | lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinBobinski committed Nov 26, 2024
1 parent 94c237b commit d2ee7c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package pl.allegro.tech.hermes.management.api;

import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON;
import static pl.allegro.tech.hermes.management.infrastructure.audit.AuditEventType.REMOVED;

import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
Expand All @@ -10,9 +13,6 @@
import pl.allegro.tech.hermes.management.domain.subscription.SubscriptionService;
import pl.allegro.tech.hermes.management.infrastructure.audit.AuditEvent;

import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON;
import static pl.allegro.tech.hermes.management.infrastructure.audit.AuditEventType.REMOVED;

@Path("subscriptions/termination-cleanup")
public class SubscriptionTerminationCleanupEndpoint {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package pl.allegro.tech.hermes.management.infrastructure.kafka;

import static java.lang.String.format;
import static pl.allegro.tech.hermes.api.ErrorCode.CONSUMER_GROUP_DELETION_ERROR;

import pl.allegro.tech.hermes.api.ErrorCode;
import pl.allegro.tech.hermes.api.SubscriptionName;
import pl.allegro.tech.hermes.management.domain.ManagementException;

import static java.lang.String.format;
import static pl.allegro.tech.hermes.api.ErrorCode.CONSUMER_GROUP_DELETION_ERROR;

public class ConsumerGroupDeletionException extends ManagementException {

public ConsumerGroupDeletionException(SubscriptionName subscriptionName, Throwable e) {
Expand Down

0 comments on commit d2ee7c6

Please sign in to comment.