Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
πŸ› Fix UserName Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Zone-Infinity committed Feb 27, 2022
1 parent e94b3e7 commit 76e3e78
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -56,8 +56,8 @@ public String getUserID() {
*
* @return username in string
*/
public String getUsername() {
return username;
public String getUserName() {
return userName;
}

/**
Expand Down

0 comments on commit 76e3e78

Please sign in to comment.