javadoc fixes

This commit is contained in:
zzz
2016-12-03 14:27:50 +00:00
parent 5be077e25d
commit f461d4881d
5 changed files with 2 additions and 9 deletions

View File

@ -34,7 +34,6 @@ public class MaskedIPSet extends HashSet<String> {
*
* @param peer non-null
* @param mask is 1-4 (number of bytes to match)
* @return an opaque set of masked IPs for this peer
*/
public MaskedIPSet(RouterContext ctx, Hash peer, int mask) {
this(ctx, peer, ctx.netDb().lookupRouterInfoLocally(peer), mask);
@ -48,7 +47,6 @@ public class MaskedIPSet extends HashSet<String> {
*
* @param pinfo may be null
* @param mask is 1-4 (number of bytes to match)
* @return an opaque set of masked IPs for this peer
*/
public MaskedIPSet(RouterContext ctx, RouterInfo pinfo, int mask) {
this(ctx, pinfo != null ? pinfo.getHash() : null, pinfo, mask);
@ -62,7 +60,6 @@ public class MaskedIPSet extends HashSet<String> {
*
* @param pinfo may be null
* @param mask is 1-4 (number of bytes to match)
* @return an opaque set of masked IPs for this peer
*/
public MaskedIPSet(RouterContext ctx, Hash peer, RouterInfo pinfo, int mask) {
super(4);