Related with
CMP-784
JdbcSnapshot has a add and get method but does not have a remove method. This is important in the case where we want to remove a mapping from Compass and are using mirroring and subsequently snapshot.
Example implementation:
public JdbcAliasSnapshot removeAliasSnapshot(String alias) {
return (JdbcAliasSnapshot) aliasSnapshots.remove(alias);
}