You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final ServerAddress serverAddress = ArrayArgumentUtils.getArgument(args, 0, ServerAddress.class);
if (serverAddress != null) {
final String hostAddress = HostAndPort.toHostAndPortString(serverAddress.getHost(), serverAddress.getPort());
hostList.add(hostAddress);
} else {
// arg0 is List<ServerAddress>
final List list = ArrayArgumentUtils.getArgument(args, 0, List.class);
if (list != null) {
for (Object o : list) {
if (o instanceof ServerAddress) {
final String hostAddress = HostAndPort.toHostAndPortString(serverAddress.getHost(), serverAddress.getPort());
The text was updated successfully, but these errors were encountered:
Load of known null value.
The text was updated successfully, but these errors were encountered: