summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/launcher3/util/ComponentKey.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/com/android/launcher3/util/ComponentKey.java b/src/com/android/launcher3/util/ComponentKey.java
index 0f17f009e..7a7ed4a4f 100644
--- a/src/com/android/launcher3/util/ComponentKey.java
+++ b/src/com/android/launcher3/util/ComponentKey.java
@@ -17,7 +17,7 @@ package com.android.launcher3.util;
*/
import android.content.ComponentName;
-
+import android.content.Context;
import com.android.launcher3.compat.UserHandleCompat;
import java.util.Arrays;
@@ -38,6 +38,11 @@ public class ComponentKey {
}
+ public ComponentKey(Context context, String componentKeyStr) {
+ // Do nothing
+ throw new UnsupportedOperationException();
+ }
+
@Override
public int hashCode() {
return mHashCode;