Skip to content
Snippets Groups Projects
Commit 7c869a6e authored by akwizgran's avatar akwizgran
Browse files

Cleaned up some javadocs.

parent 19bfe71f
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ package org.briarproject.api.sync; ...@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
import java.util.Collection; 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 { public class Ack {
private final Collection<MessageId> acked; private final Collection<MessageId> acked;
......
...@@ -2,7 +2,7 @@ package org.briarproject.api.sync; ...@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
import java.util.Collection; 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 { public class Offer {
private final Collection<MessageId> offered; private final Collection<MessageId> offered;
......
...@@ -2,7 +2,9 @@ package org.briarproject.api.sync; ...@@ -2,7 +2,9 @@ package org.briarproject.api.sync;
import java.util.Collection; 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 { public class Request {
private final Collection<org.briarproject.api.sync.MessageId> requested; private final Collection<org.briarproject.api.sync.MessageId> requested;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment