Invert returned boolean from SstConnectionTable>>#hasConnections
The method SstConnectionTable>>#hasConnections returns a boolean, and it was returning a boolean that was the negated value of what the method selector suggests; meaning it returned false when it did have connections, and true when it didn't.
Reason for change
To have a consistent method selector and its returned value, we modified the sole sender of the #hasConnections message to adjust its logic to the correct returned value.
Action required
There is a new #hasNoConnections method in SstConnectionTable that returns the same value as #hasConnections did before, but if your code directly sent #hasConnections you'll have to adjust the senders to reflect the new behavior or use #hasNoConnections instead.
Last modified date: 02/24/2025