We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2b304 commit 99e6a3fCopy full SHA for 99e6a3f
src/main/java/com/hivemq/cli/mqtt/AbstractMqttClientExecutor.java
@@ -511,10 +511,4 @@ public boolean isConnected(final @NotNull Context context) {
511
new String(mqtt3Publish.getPayloadAsBytes(), StandardCharsets.UTF_8));
512
}
513
514
-
515
- private @NotNull String getClientDataKey(final @NotNull MqttClient client) {
516
- final String clientId = client.getConfig().getClientIdentifier().map(Objects::toString).orElse("null");
517
- final String serverHost = client.getConfig().getServerHost();
518
- return "client {" + "identifier='" + clientId + '\'' + ", host='" + serverHost + '\'' + '}';
519
- }
520
0 commit comments