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

Commit

Permalink
Remove unused code (#2903)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored Mar 2, 2020
1 parent c2a5eb4 commit b68f946
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,18 +211,6 @@ public void purgeSessionHistory() {
}
}

public void onPause() {
for (Session session: mSessions) {
session.setActive(false);
}
}

public void onResume() {
for (Session session: mSessions) {
session.setActive(true);
}
}

public void onDestroy() {
for (int i = mSessions.size() - 1; i >= 0; --i) {
destroySession(mSessions.get(i));
Expand Down

0 comments on commit b68f946

Please sign in to comment.