Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
iamoscarliang committed Sep 21, 2024
1 parent d702a6d commit eee0411
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

public class AlbumFragment extends Fragment {

public static final String ALBUM_ID_KEY = "albumId";
private static final String ALBUM_ID_KEY = "albumId";

@Inject
MusicPlayer musicPlayer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@

public class HomeFragment extends Fragment {

@Inject
ViewModelProvider.Factory factory;

private AutoClearedValue<FragmentHomeBinding> binding;
private AlbumCardAdapter albumCardAdapter;
private ArtistCardAdapter artistCardAdapter;
private HomeViewModel viewModel;

@Inject
ViewModelProvider.Factory factory;

private final CompositeDisposable disposables = new CompositeDisposable();

public HomeFragment() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
public class LoginFragment extends Fragment implements
ResetPasswordDialog.onSendResetPasswordEmailClickListener {

private AutoClearedValue<FragmentLoginBinding> binding;
private LoginViewModel viewModel;

@Inject
ViewModelProvider.Factory factory;

private AutoClearedValue<FragmentLoginBinding> binding;
private LoginViewModel viewModel;

private final CompositeDisposable disposables = new CompositeDisposable();

public LoginFragment() {
Expand Down

0 comments on commit eee0411

Please sign in to comment.