summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/util/Profile.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/util/Profile.java')
-rw-r--r--src/com/android/gallery3d/util/Profile.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/util/Profile.java b/src/com/android/gallery3d/util/Profile.java
index 6b6e5c3c3..7ed72c90e 100644
--- a/src/com/android/gallery3d/util/Profile.java
+++ b/src/com/android/gallery3d/util/Profile.java
@@ -32,6 +32,7 @@ import java.util.Random;
// can be called in onPause() to ensure all profiling is disabled when an
// activity is paused.
public class Profile {
+ @SuppressWarnings("unused")
private static final String TAG = "Profile";
private static final int NS_PER_MS = 1000000;
@@ -56,6 +57,7 @@ public class Profile {
private HandlerThread mHandlerThread;
private Handler mHandler;
private Runnable mProcessRunnable = new Runnable() {
+ @Override
public void run() {
synchronized (Watchdog.this) {
processList();