Refactoring #55

Merged
kske merged 7 commits from refactoring into develop 2020-09-27 12:06:39 +02:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit ede50ed3e5 - Show all commits

View File

@ -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
Review

Why has that been taken out?

Why has that been taken out?
* @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.
kske marked this conversation as resolved Outdated
Outdated
Review

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
Outdated
Review

contacts

contact***s***
*
* @param contacts the contacts to send the object to
* @param message the object to send