summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-03-09 03:57:03 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-03-09 03:57:03 +0000
commit93a51cc5d641c45bcc4d8bcd47b715919935b918 (patch)
treeca2ca0fee43786bbcfb157317778c86d99d2acbc /java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java
parent261cba95c73cdc16b71b0ec1e7cdc6ff5d11a6ad (diff)
parent362350a54359c22e94c25edc008978645c8e6ee9 (diff)
Merge "Implement non-ui logic for delete/undo delete voicemails"
Diffstat (limited to 'java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java')
-rw-r--r--java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java b/java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java
index 3a5e72b6b..72f0ab542 100644
--- a/java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java
+++ b/java/com/android/dialer/voicemail/listui/NewVoicemailFragment.java
@@ -205,7 +205,7 @@ public final class NewVoicemailFragment extends Fragment implements LoaderCallba
/** Shows the view when there are no voicemails to be displayed * */
private void showEmptyVoicemailFragmentView() {
- LogUtil.enterBlock("NewVoicemailFragmentListener.showEmptyVoicemailFragmentView");
+ LogUtil.enterBlock("NewVoicemailFragment.showEmptyVoicemailFragmentView");
showView(emptyContentView);
@@ -215,7 +215,7 @@ public final class NewVoicemailFragment extends Fragment implements LoaderCallba
}
private void showView(View view) {
- LogUtil.i("NewVoicemailFragmentListener.showView", "Showing view: " + view);
+ LogUtil.i("NewVoicemailFragment.showView", "Showing view: " + view);
emptyContentView.setVisibility(view == emptyContentView ? View.VISIBLE : View.GONE);
recyclerView.setVisibility(view == recyclerView ? View.VISIBLE : View.GONE);
}