Skip to content

Commit 9ceb8f3

Browse files
committed
Make a couple of elements public
For the performance tool, which will be extracted as a standalone project soon.
1 parent 783a82a commit 9ceb8f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/rabbitmq/stream/impl/Client.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ private String serverAddress() {
14111411
}
14121412
}
14131413

1414-
boolean filteringSupported() {
1414+
public boolean filteringSupported() {
14151415
return this.filteringSupported;
14161416
}
14171417

@@ -1590,7 +1590,7 @@ int serverAdvertisedPort() {
15901590
return Integer.valueOf(this.connectionProperties("advertised_port"));
15911591
}
15921592

1593-
String brokerVersion() {
1593+
public String brokerVersion() {
15941594
return this.serverProperties.get("version");
15951595
}
15961596

src/main/java/com/rabbitmq/stream/impl/ClientProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.slf4j.Logger;
2222
import org.slf4j.LoggerFactory;
2323

24-
final class ClientProperties {
24+
public final class ClientProperties {
2525

2626
private static final Logger LOGGER = LoggerFactory.getLogger(ClientProperties.class);
2727

0 commit comments

Comments
 (0)