Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void run() {
manager.subscribe(LoggedOnCallback.class, this::onLoggedOn);
manager.subscribe(LoggedOffCallback.class, this::onLoggedOff);

manager.subscribe(AccountInfoCallback.class, this::anAccountInfo);
manager.subscribe(AccountInfoCallback.class, this::onAccountInfo);
manager.subscribe(FriendsListCallback.class, this::onFriendList);
manager.subscribe(PersonaStatesCallback.class, this::onPersonaStates);
manager.subscribe(FriendAddedCallback.class, this::onFriendAdded);
Expand Down Expand Up @@ -142,7 +142,7 @@ private void onLoggedOff(LoggedOffCallback callback) {
isRunning = false;
}

private void anAccountInfo(AccountInfoCallback callback) {
private void onAccountInfo(AccountInfoCallback callback) {
// before being able to interact with friends, you must wait for the account info callback
// this callback is posted shortly after a successful logon

Expand Down