Skip to content
Snippets Groups Projects
Commit b54c0829 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Rename Activites Handler class

parent d5c580c6
No related branches found
No related tags found
No related merge requests found
......@@ -381,7 +381,7 @@ public class AudioPlayerContainerActivity extends BaseActivity implements Playba
}
};
Handler mActivityHandler = new StorageHandler(this);
Handler mActivityHandler = new ProgressHandler(this);
AudioPlayerBottomSheetCallback mAudioPlayerBottomSheetCallback = new AudioPlayerBottomSheetCallback();
private static final int ACTION_DISPLAY_PROGRESSBAR = 1339;
......@@ -419,9 +419,9 @@ public class AudioPlayerContainerActivity extends BaseActivity implements Playba
protected void onPlayerStateChanged(View bottomSheet, int newState) {}
private static class StorageHandler extends WeakHandler<AudioPlayerContainerActivity> {
private static class ProgressHandler extends WeakHandler<AudioPlayerContainerActivity> {
StorageHandler(AudioPlayerContainerActivity owner) {
ProgressHandler(AudioPlayerContainerActivity owner) {
super(owner);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment