Hello, I am working on CASSANDRA-17199 <https://issues.apache.org/jira/browse/CASSANDRA-17199> and testing for this ticket has uncovered some issues with streaming. When creating a StreamSession we have an intent for to listen but that never happens. My concern is wether or not we should we listen and make sure the interface it implements is not dead code or delete the interface and all of its methods. Our style guide requires no dead code so this might be intentional, but when testing we see that StreamSession not listening. If it is intentional then I suppose we make sure that we are listening. Any opinions on what to do in this scenario?
(PROBLEM) The project compiles in both scenarios: public class StreamSession implements IEndpointStateChangeSubscriber public class StreamSession //implements IEndpointStateChangeSubscriber Thanks, Natnael