summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardTouchDelegate.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardTouchDelegate.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardTouchDelegate.java
index 0be66f8ebfe4..1ea920de435f 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardTouchDelegate.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardTouchDelegate.java
@@ -16,8 +16,6 @@
package com.android.systemui.statusbar.phone;
-import com.google.android.collect.Lists;
-
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
@@ -30,6 +28,7 @@ import android.view.MotionEvent;
import com.android.internal.policy.IKeyguardService;
+import java.util.ArrayList;
import java.util.List;
@@ -45,7 +44,7 @@ public class KeyguardTouchDelegate {
private static KeyguardTouchDelegate sInstance;
private static final List<OnKeyguardConnectionListener> sConnectionListeners =
- Lists.newArrayList();
+ new ArrayList<OnKeyguardConnectionListener>();
private volatile IKeyguardService mService;