Fix Javadoc errors spotted by @delvh

This commit is contained in:
Kai S. K. Engelbart 2020-09-27 12:06:01 +02:00
parent 5daff3620e
commit ede50ed3e5
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,8 @@ package envoy.util;
import java.util.regex.Pattern;
/**
* Implements contact name validation.
*
* @author Kai S. K. Engelbart
* @since Envoy Common v0.1-beta
*/

View File

@ -61,7 +61,7 @@ public final class ObjectWriteProxy {
}
/**
* Sends an object to all contact in a set that are online.
* Sends an object to all contacts in a set that are online.
*
* @param contacts the contacts to send the object to
* @param message the object to send
@ -70,7 +70,7 @@ public final class ObjectWriteProxy {
public void writeToOnlineContacts(Set<? extends Contact> contacts, Object message) { writeToOnlineContacts(contacts.stream(), message); }
/**
* Sends an object to all contact in a set that are online.
* Sends an object to all contacts in a set that are online.
*
* @param contacts the contacts to send the object to
* @param message the object to send