mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Cleaned up some javadocs.
This commit is contained in:
@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/** A packet acknowledging receipt of one or more {@link Message}s. */
|
||||
/** A packet acknowledging receipt of one or more {@link Message Messages}. */
|
||||
public class Ack {
|
||||
|
||||
private final Collection<MessageId> acked;
|
||||
|
||||
@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/** A packet offering the recipient one or more {@link Message}s. */
|
||||
/** A packet offering the recipient one or more {@link Message Messages}. */
|
||||
public class Offer {
|
||||
|
||||
private final Collection<MessageId> offered;
|
||||
|
||||
@@ -2,7 +2,9 @@ package org.briarproject.api.sync;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/** A packet requesting one or more {@link Message}s from the recipient. */
|
||||
/**
|
||||
* A packet requesting one or more {@link Message Messages} from the recipient.
|
||||
*/
|
||||
public class Request {
|
||||
|
||||
private final Collection<org.briarproject.api.sync.MessageId> requested;
|
||||
|
||||
Reference in New Issue
Block a user