Skip to content

Commit

Permalink
Update ConfigController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
moremind authored Nov 13, 2024
1 parent 4574432 commit f8a613d
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
import org.apache.shenyu.admin.utils.ShenyuResultMessage;
import org.apache.shenyu.common.dto.ConfigData;
import org.apache.shenyu.common.enums.ConfigGroupEnum;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.context.annotation.DependsOn;
import org.springframework.web.bind.annotation.GetMapping;
Expand All @@ -53,16 +51,13 @@
@ConditionalOnBean(HttpLongPollingDataChangedListener.class)
public class ConfigController {

private static final Logger LOG = LoggerFactory.getLogger(ConfigController.class);

private final HttpLongPollingDataChangedListener longPollingListener;

private final NamespaceService namespaceService;

public ConfigController(final HttpLongPollingDataChangedListener longPollingListener, final NamespaceService namespaceService) {
this.longPollingListener = longPollingListener;
this.namespaceService = namespaceService;
LOG.info("ConfigController is started");
}

/**
Expand Down

0 comments on commit f8a613d

Please sign in to comment.