aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/util/ToastUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tv/util/ToastUtils.java')
-rw-r--r--src/com/android/tv/util/ToastUtils.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/com/android/tv/util/ToastUtils.java b/src/com/android/tv/util/ToastUtils.java
index 34346b2a..a25653f6 100644
--- a/src/com/android/tv/util/ToastUtils.java
+++ b/src/com/android/tv/util/ToastUtils.java
@@ -19,18 +19,13 @@ package com.android.tv.util;
import android.content.Context;
import android.support.annotation.MainThread;
import android.widget.Toast;
-
import java.lang.ref.WeakReference;
-/**
- * A utility class for the toast message.
- */
+/** A utility class for the toast message. */
public class ToastUtils {
private static WeakReference<Toast> sToast;
- /**
- * Shows the toast message after canceling the previous one.
- */
+ /** Shows the toast message after canceling the previous one. */
@MainThread
public static void show(Context context, CharSequence text, int duration) {
if (sToast != null && sToast.get() != null) {