3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-30 23:02:15 +00:00

Minor JavaDoc updates.

This commit is contained in:
Mike Hearn 2013-01-16 17:50:43 +01:00
parent 75e467dfc4
commit 22f8034de8
3 changed files with 1 additions and 11 deletions

View File

@ -33,8 +33,6 @@ public class InventoryMessage extends ListMessage {
* Deserializes an 'inv' message.
* @param params NetworkParameters object.
* @param msg Bitcoin protocol formatted byte array containing message content.
* @param offset The location of the first msg byte within the array.
* @param protocolVersion Bitcoin protocol version.
* @param parseLazy Whether to perform a full parse immediately or delay until a read is requested.
* @param parseRetain Whether to retain the backing byte array for quick reserialization.
* If true and the backing byte array is invalidated due to modification of a field then

View File

@ -56,8 +56,6 @@ public class PeerAddress extends ChildMessage {
* @param parseRetain Whether to retain the backing byte array for quick reserialization.
* If true and the backing byte array is invalidated due to modification of a field then
* the cached bytes may be repopulated and retained if the message is serialized again in the future.
* @param length The length of message if known. Usually this is provided when deserializing of the wire
* as the length will be provided as part of the header. If unknown then set to Message.UNKNOWN_LENGTH
* @throws ProtocolException
*/
public PeerAddress(NetworkParameters params, byte[] msg, int offset, int protocolVersion, Message parent, boolean parseLazy,

View File

@ -19,13 +19,7 @@ package com.google.bitcoin.core;
import java.util.List;
/**
* Implementing a PeerEventListener allows you to learn when significant Peer communication
* has occurred.
*
* <p>Methods are called with the event listener object locked so your
* implementation does not have to be thread safe.
*
* @author miron@google.com (Miron Cuperman a.k.a devrandom)
* <p>Implementing a PeerEventListener allows you to learn when significant Peer communication has occurred.</p>
*/
public interface PeerEventListener {
/**