summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/trebuchet/LauncherActionInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/trebuchet/LauncherActionInfo.java')
-rw-r--r--src/com/cyanogenmod/trebuchet/LauncherActionInfo.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/com/cyanogenmod/trebuchet/LauncherActionInfo.java b/src/com/cyanogenmod/trebuchet/LauncherActionInfo.java
deleted file mode 100644
index 034c2ebff..000000000
--- a/src/com/cyanogenmod/trebuchet/LauncherActionInfo.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.cyanogenmod.trebuchet;
-
-import android.content.ContentValues;
-
-class LauncherActionInfo extends ShortcutInfo {
-
- /*
- * The launcher action
- */
- LauncherAction.Action action;
-
- LauncherActionInfo() {
- itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_LAUNCHER_ACTION;
- }
-
- @Override
- void onAddToDatabase(ContentValues values) {
- super.onAddToDatabase(values);
-
- String actionText = action != null ? action.name() : null;
- values.put(LauncherSettings.Favorites.LAUNCHER_ACTION, actionText);
- }
-}