From 76e3e785b6daebd80943cc3d8df33278248678e2 Mon Sep 17 00:00:00 2001 From: Zone-Infinity Date: Sun, 27 Feb 2022 14:10:36 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20UserName=20Typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/me/infinity/ibl/webhooks/IBLVoteEvent.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ibl-webhooks/src/main/java/me/infinity/ibl/webhooks/IBLVoteEvent.java b/ibl-webhooks/src/main/java/me/infinity/ibl/webhooks/IBLVoteEvent.java index 794ea9b..7f7c1f6 100644 --- a/ibl-webhooks/src/main/java/me/infinity/ibl/webhooks/IBLVoteEvent.java +++ b/ibl-webhooks/src/main/java/me/infinity/ibl/webhooks/IBLVoteEvent.java @@ -9,15 +9,15 @@ public class IBLVoteEvent { private final Type type; private final String botID; private final String userID; - private final String username; + private final String userName; private final int count; private final long timeStamp; - public IBLVoteEvent(Type type, String botID, String userID, String username, int count, long timestamp) { + public IBLVoteEvent(Type type, String botID, String userID, String userName, int count, long timestamp) { this.type = type; this.botID = botID; this.userID = userID; - this.username = username; + this.userName = userName; this.count = count; this.timeStamp = timestamp; } @@ -56,8 +56,8 @@ public String getUserID() { * * @return username in string */ - public String getUsername() { - return username; + public String getUserName() { + return userName; } /**