Remove deprecations from previous versions (#8628)

This commit is contained in:
Artem Bilan
2023-05-22 11:19:13 -04:00
committed by GitHub
parent edbaf6d590
commit ba417de680
37 changed files with 22 additions and 1929 deletions

View File

@@ -58,18 +58,6 @@ import org.springframework.util.Assert;
public abstract class AbstractMqttMessageDrivenChannelAdapter<T, C> extends MessageProducerSupport
implements ApplicationEventPublisherAware, ClientManager.ConnectCallback {
/**
* The default completion timeout in milliseconds.
*/
@Deprecated(since = "6.0.3", forRemoval = true)
public static final long DEFAULT_COMPLETION_TIMEOUT = ClientManager.DEFAULT_COMPLETION_TIMEOUT;
/**
* The default disconnect completion timeout in milliseconds.
*/
@Deprecated(since = "6.0.3", forRemoval = true)
public static final long DISCONNECT_COMPLETION_TIMEOUT = ClientManager.DISCONNECT_COMPLETION_TIMEOUT;
protected final Lock topicLock = new ReentrantLock(); // NOSONAR
private final String url;