forked from I2P_Developers/i2p.i2p
javadoc fixes
This commit is contained in:
@ -15,7 +15,6 @@ javaeedocs.url=http://docs.oracle.com/javaee/7/api/
|
||||
# perhaps not, as they move 7 and 8 to unsupported status.
|
||||
#jettydocs.url=http://download.eclipse.org/jetty/stable-8/apidocs/
|
||||
jettydocs.url=http://download.eclipse.org/jetty/8.1.17.v20150415/apidocs/
|
||||
jrobindocs.url=http://docs.i2p-projekt.de/jrobin/javadoc/
|
||||
wrapperdocs.url=http://wrapper.tanukisoftware.com/jdoc/
|
||||
# these are only for unit test javadocs
|
||||
i2pdocs.url=http://docs.i2p-projekt.de/javadoc/
|
||||
|
@ -783,7 +783,6 @@
|
||||
<link offline="true" href="${javasedocs.url}" packagelistLoc="installer/resources/package-lists/java/" />
|
||||
<link offline="true" href="${javaeedocs.url}" packagelistLoc="installer/resources/package-lists/javaee/" />
|
||||
<link offline="true" href="${jettydocs.url}" packagelistLoc="installer/resources/package-lists/jetty/" />
|
||||
<link offline="true" href="${jrobindocs.url}" packagelistLoc="installer/resources/package-lists/jrobin/" />
|
||||
<link offline="true" href="${wrapperdocs.url}" packagelistLoc="installer/resources/package-lists/wrapper/" />
|
||||
</javadoc>
|
||||
<echo message="Warning, javadoc embeds timestamps in the output, run with 'TZ=UTC ant javadoc' if you plan to distribute" />
|
||||
|
@ -13,8 +13,8 @@ import net.i2p.data.Hash;
|
||||
*
|
||||
* As of release 0.8.7, uses java.security.MessageDigest by default.
|
||||
* As of release 0.9.25, uses only MessageDigest.
|
||||
* GNU-Crypto {@link gnu.crypto.hash.Sha256Standalone}
|
||||
* is deprecated.
|
||||
* GNU-Crypto gnu.crypto.hash.Sha256Standalone
|
||||
* is removed as of 0.9.28.
|
||||
*/
|
||||
public final class SHA256Generator {
|
||||
private final LinkedBlockingQueue<MessageDigest> _digests;
|
||||
|
@ -1,2 +0,0 @@
|
||||
org.jrobin.core
|
||||
org.jrobin.graph
|
@ -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);
|
||||
|
Reference in New Issue
Block a user