more @since updates

This commit is contained in:
zzz
2015-06-10 19:23:26 +00:00
parent 605602e001
commit 8962bfb6bc
19 changed files with 26 additions and 21 deletions

View File

@ -218,7 +218,7 @@ public class TunnelPoolSettings {
/**
* Other destinations that use the same tunnel (or null if exploratory)
* Modifiable, concurrent, not a copy
* @since 0.9.19
* @since 0.9.21
*/
public Set<Hash> getAliases() {
return _aliases;
@ -227,7 +227,7 @@ public class TunnelPoolSettings {
/**
* Other destination that this is an alias of (or null).
* If non-null, don't build tunnels.
* @since 0.9.19
* @since 0.9.21
*/
public Hash getAliasOf() {
return _aliasOf;
@ -237,7 +237,7 @@ public class TunnelPoolSettings {
/**
* Set other destination that this is an alias of (or null).
* If non-null, don't build tunnels.
* @since 0.9.19
* @since 0.9.21
*/
public void setAliasOf(Hash h) {
_aliasOf = h;

View File

@ -15,7 +15,7 @@ import net.i2p.util.Log;
* A tunnel pool with its own settings and Destination,
* but uses another pool for its tunnels.
*
* @since 0.9.20
* @since 0.9.21
*/
public class AliasedTunnelPool extends TunnelPool {

View File

@ -441,7 +441,7 @@ public class TunnelPoolManager implements TunnelManagerFacade {
* Must have same encryption key an a different signing key.
* @throws IllegalArgumentException if not
* @return success
* @since 0.9.19
* @since 0.9.21
*/
public boolean addAlias(Destination dest, ClientTunnelSettings settings, Destination existingClient) {
if (dest.getSigningPublicKey().equals(existingClient.getSigningPublicKey()))
@ -485,7 +485,7 @@ public class TunnelPoolManager implements TunnelManagerFacade {
/**
* Remove a destination for the same tunnels as another.
* @since 0.9.19
* @since 0.9.21
*/
public void removeAlias(Destination dest) {
Hash h = dest.calculateHash();