fixed major (spelling!) error

This commit is contained in:
delvh 2020-03-29 10:02:56 +02:00
parent 026b7404b2
commit 8cdd12e6b8
1 changed files with 2 additions and 2 deletions

View File

@ -34,11 +34,11 @@ public class MessageBuilder {
* *
* @param senderID the ID of the user who sends the {@link Message} * @param senderID the ID of the user who sends the {@link Message}
* @param recipientID the ID of the user who receives the {@link Message} * @param recipientID the ID of the user who receives the {@link Message}
* @param iDGenerator the ID generator used to generate a unique {@link Message} * @param idGenerator the ID generator used to generate a unique {@link Message}
* id * id
* @since Envoy Common v0.2-alpha * @since Envoy Common v0.2-alpha
*/ */
public MessageBuilder(long senderID, long recipientID, IDGenerator iDGenerator) { this(senderID, recipientID, iDGenerator.next()); } public MessageBuilder(long senderID, long recipientID, IDGenerator idGenerator) { this(senderID, recipientID, idGenerator.next()); }
/** /**
* Creates an instance of {@link MessageBuilder} with all mandatory values * Creates an instance of {@link MessageBuilder} with all mandatory values