Update links from code.google.com to github.com

Motivation:

This pull request does not solve any problem but we find that several links in the code refer to project websites under the domain of http://code.google.com which are either moved to github or not maintained anymore.

Modification:

Update the project links from code.google.com to the relevant project in github.com
This commit is contained in:
ulinnuha 2017-03-05 21:17:33 +01:00 committed by Norman Maurer
parent 6bb661302f
commit a9d7c72cde
9 changed files with 16 additions and 16 deletions

View File

@ -79,7 +79,7 @@ It can be obtained at:
* LICENSE: * LICENSE:
* license/LICENSE.abstractnodequeue.txt (Public Domain) * license/LICENSE.abstractnodequeue.txt (Public Domain)
* HOMEPAGE: * HOMEPAGE:
* https://github.com/akka/akka/blob/wip-2.2.3-for-scala-2.11/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java * https://github.com/akka/akka/blob/master/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java
This product contains a modified portion of 'jbzip2', a Java bzip2 compression This product contains a modified portion of 'jbzip2', a Java bzip2 compression
and decompression library written by Matthew J. Francis. It can be obtained at: and decompression library written by Matthew J. Francis. It can be obtained at:
@ -96,7 +96,7 @@ a constant-size alphabet written by Yuta Mori. It can be obtained at:
* LICENSE: * LICENSE:
* license/LICENSE.libdivsufsort.txt (MIT License) * license/LICENSE.libdivsufsort.txt (MIT License)
* HOMEPAGE: * HOMEPAGE:
* https://code.google.com/p/libdivsufsort/ * https://github.com/y-256/libdivsufsort
This product contains a modified portion of Nitsan Wakart's 'JCTools', Java Concurrency Tools for the JVM, This product contains a modified portion of Nitsan Wakart's 'JCTools', Java Concurrency Tools for the JVM,
which can be obtained at: which can be obtained at:
@ -152,7 +152,7 @@ interchange format, which can be obtained at:
* LICENSE: * LICENSE:
* license/LICENSE.protobuf.txt (New BSD License) * license/LICENSE.protobuf.txt (New BSD License)
* HOMEPAGE: * HOMEPAGE:
* http://code.google.com/p/protobuf/ * https://github.com/google/protobuf
This product optionally depends on 'Bouncy Castle Crypto APIs' to generate This product optionally depends on 'Bouncy Castle Crypto APIs' to generate
a temporary self-signed X.509 certificate when the JVM does not provide the a temporary self-signed X.509 certificate when the JVM does not provide the
@ -169,7 +169,7 @@ by Google Inc, which can be obtained at:
* LICENSE: * LICENSE:
* license/LICENSE.snappy.txt (New BSD License) * license/LICENSE.snappy.txt (New BSD License)
* HOMEPAGE: * HOMEPAGE:
* http://code.google.com/p/snappy/ * https://github.com/google/snappy
This product optionally depends on 'JBoss Marshalling', an alternative Java This product optionally depends on 'JBoss Marshalling', an alternative Java
serialization API, which can be obtained at: serialization API, which can be obtained at:
@ -185,7 +185,7 @@ benchmarking framework, which can be obtained at:
* LICENSE: * LICENSE:
* license/LICENSE.caliper.txt (Apache License 2.0) * license/LICENSE.caliper.txt (Apache License 2.0)
* HOMEPAGE: * HOMEPAGE:
* http://code.google.com/p/caliper/ * https://github.com/google/caliper
This product optionally depends on 'Apache Commons Logging', a logging This product optionally depends on 'Apache Commons Logging', a logging
framework, which can be obtained at: framework, which can be obtained at:

View File

@ -31,7 +31,7 @@ import static io.netty.handler.codec.compression.Lz4Constants.*;
/** /**
* Uncompresses a {@link ByteBuf} encoded with the LZ4 format. * Uncompresses a {@link ByteBuf} encoded with the LZ4 format.
* *
* See original <a href="http://code.google.com/p/lz4/">LZ4 website</a> * See original <a href="https://github.com/Cyan4973/lz4">LZ4 Github project</a>
* and <a href="http://fastcompression.blogspot.ru/2011/05/lz4-explained.html">LZ4 block format</a> * and <a href="http://fastcompression.blogspot.ru/2011/05/lz4-explained.html">LZ4 block format</a>
* for full description. * for full description.
* *
@ -121,7 +121,7 @@ public class Lz4FrameDecoder extends ByteToMessageDecoder {
* uncompressed data, and if the checksums do not match, a suitable * uncompressed data, and if the checksums do not match, a suitable
* {@link DecompressionException} will be thrown. In this case encoder will use * {@link DecompressionException} will be thrown. In this case encoder will use
* xxhash hashing for Java, based on Yann Collet's work available at * xxhash hashing for Java, based on Yann Collet's work available at
* <a href="http://code.google.com/p/xxhash/">Google Code</a>. * <a href="https://github.com/Cyan4973/xxHash">Github</a>.
*/ */
public Lz4FrameDecoder(LZ4Factory factory, boolean validateChecksums) { public Lz4FrameDecoder(LZ4Factory factory, boolean validateChecksums) {
this(factory, validateChecksums ? this(factory, validateChecksums ?

View File

@ -42,7 +42,7 @@ import static io.netty.handler.codec.compression.Lz4Constants.*;
/** /**
* Compresses a {@link ByteBuf} using the LZ4 format. * Compresses a {@link ByteBuf} using the LZ4 format.
* *
* See original <a href="http://code.google.com/p/lz4/">LZ4 website</a> * See original <a href="https://github.com/Cyan4973/lz4">LZ4 Github project</a>
* and <a href="http://fastcompression.blogspot.ru/2011/05/lz4-explained.html">LZ4 block format</a> * and <a href="http://fastcompression.blogspot.ru/2011/05/lz4-explained.html">LZ4 block format</a>
* for full description. * for full description.
* *
@ -98,7 +98,7 @@ public class Lz4FrameEncoder extends MessageToByteEncoder<ByteBuf> {
/** /**
* Creates the fastest LZ4 encoder with default block size (64 KB) * Creates the fastest LZ4 encoder with default block size (64 KB)
* and xxhash hashing for Java, based on Yann Collet's work available at * and xxhash hashing for Java, based on Yann Collet's work available at
* <a href="http://code.google.com/p/xxhash/">Google Code</a>. * <a href="https://github.com/Cyan4973/xxHash">Github</a>.
*/ */
public Lz4FrameEncoder() { public Lz4FrameEncoder() {
this(false); this(false);
@ -107,7 +107,7 @@ public class Lz4FrameEncoder extends MessageToByteEncoder<ByteBuf> {
/** /**
* Creates a new LZ4 encoder with hight or fast compression, default block size (64 KB) * Creates a new LZ4 encoder with hight or fast compression, default block size (64 KB)
* and xxhash hashing for Java, based on Yann Collet's work available at * and xxhash hashing for Java, based on Yann Collet's work available at
* <a href="http://code.google.com/p/xxhash/">Google Code</a>. * <a href="https://github.com/Cyan4973/xxHash">Github</a>.
* *
* @param highCompressor if {@code true} codec will use compressor which requires more memory * @param highCompressor if {@code true} codec will use compressor which requires more memory
* and is slower but compresses more efficiently * and is slower but compresses more efficiently

View File

@ -26,7 +26,7 @@ import static io.netty.handler.codec.compression.Snappy.validateChecksum;
/** /**
* Uncompresses a {@link ByteBuf} encoded with the Snappy framing format. * Uncompresses a {@link ByteBuf} encoded with the Snappy framing format.
* *
* See http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt * See <a href="https://github.com/google/snappy/blob/master/framing_format.txt">Snappy framing format</a>.
* *
* Note that by default, validation of the checksum header in each chunk is * Note that by default, validation of the checksum header in each chunk is
* DISABLED for performance improvements. If performance is less of an issue, * DISABLED for performance improvements. If performance is less of an issue,

View File

@ -24,7 +24,7 @@ import static io.netty.handler.codec.compression.Snappy.*;
/** /**
* Compresses a {@link ByteBuf} using the Snappy framing format. * Compresses a {@link ByteBuf} using the Snappy framing format.
* *
* See http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt * See <a href="https://github.com/google/snappy/blob/master/framing_format.txt">Snappy framing format</a>.
*/ */
public class SnappyFrameEncoder extends MessageToByteEncoder<ByteBuf> { public class SnappyFrameEncoder extends MessageToByteEncoder<ByteBuf> {
/** /**

View File

@ -32,7 +32,7 @@ import java.util.List;
/** /**
* Decodes a received {@link ByteBuf} into a * Decodes a received {@link ByteBuf} into a
* <a href="http://code.google.com/p/protobuf/">Google Protocol Buffers</a> * <a href="https://github.com/google/protobuf">Google Protocol Buffers</a>
* {@link Message} and {@link MessageLite}. Please note that this decoder must * {@link Message} and {@link MessageLite}. Please note that this decoder must
* be used with a proper {@link ByteToMessageDecoder} such as {@link ProtobufVarint32FrameDecoder} * be used with a proper {@link ByteToMessageDecoder} such as {@link ProtobufVarint32FrameDecoder}
* or {@link LengthFieldBasedFrameDecoder} if you are using a stream-based * or {@link LengthFieldBasedFrameDecoder} if you are using a stream-based

View File

@ -30,7 +30,7 @@ import io.netty.util.internal.ObjectUtil;
/** /**
* Decodes a received {@link ByteBuf} into a * Decodes a received {@link ByteBuf} into a
* <a href="http://code.google.com/p/protobuf/">Google Protocol Buffers</a> * <a href="https://github.com/google/protobuf">Google Protocol Buffers</a>
* {@link MessageNano}. Please note that this decoder must * {@link MessageNano}. Please note that this decoder must
* be used with a proper {@link ByteToMessageDecoder} such as {@link LengthFieldBasedFrameDecoder} * be used with a proper {@link ByteToMessageDecoder} such as {@link LengthFieldBasedFrameDecoder}
* if you are using a stream-based transport such as TCP/IP. A typical setup for TCP/IP would be: * if you are using a stream-based transport such as TCP/IP. A typical setup for TCP/IP would be:

View File

@ -31,7 +31,7 @@ import java.util.List;
import static io.netty.buffer.Unpooled.*; import static io.netty.buffer.Unpooled.*;
/** /**
* Encodes the requested <a href="http://code.google.com/p/protobuf/">Google * Encodes the requested <a href="https://github.com/google/protobuf">Google
* Protocol Buffers</a> {@link Message} and {@link MessageLite} into a * Protocol Buffers</a> {@link Message} and {@link MessageLite} into a
* {@link ByteBuf}. A typical setup for TCP/IP would be: * {@link ByteBuf}. A typical setup for TCP/IP would be:
* <pre> * <pre>

View File

@ -29,7 +29,7 @@ import io.netty.handler.codec.LengthFieldPrepender;
import io.netty.handler.codec.MessageToMessageEncoder; import io.netty.handler.codec.MessageToMessageEncoder;
/** /**
* Encodes the requested <a href="http://code.google.com/p/protobuf/">Google * Encodes the requested <a href="https://github.com/google/protobuf">Google
* Protocol Buffers</a> {@link MessageNano} into a * Protocol Buffers</a> {@link MessageNano} into a
* {@link ByteBuf}. A typical setup for TCP/IP would be: * {@link ByteBuf}. A typical setup for TCP/IP would be:
* <pre> * <pre>