Refactoring #55
@ -3,6 +3,8 @@ package envoy.util;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* Implements contact name validation.
|
||||
*
|
||||
* @author Kai S. K. Engelbart
|
||||
kske marked this conversation as resolved
|
||||
* @since Envoy Common v0.1-beta
|
||||
*/
|
||||
|
@ -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.
|
||||
kske marked this conversation as resolved
Outdated
delvh
commented
contacts contact***s***
|
||||
*
|
||||
* @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.
|
||||
kske marked this conversation as resolved
Outdated
delvh
commented
contacts contact***s***
|
||||
*
|
||||
* @param contacts the contacts to send the object to
|
||||
* @param message the object to send
|
||||
|
Reference in New Issue
Block a user
Why has that been taken out?