rename isBuffering method and fix some analyzer warnings

This commit is contained in:
dkanada 2021-03-09 01:29:39 +09:00
commit eb6fdc649d
7 changed files with 13 additions and 13 deletions

View file

@ -136,7 +136,7 @@ public class MusicPlayerRemote {
return musicService != null && musicService.isPlaying();
}
public static boolean isBuffering() {
public static boolean isLoading() {
return musicService != null && musicService.isLoading();
}