summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2015-03-24 16:28:44 -0700
committerWinson Chung <winsonc@google.com>2015-03-24 16:31:45 -0700
commitd0930655e5670bb40ec70523c1c76ff86fab2538 (patch)
tree11f94fa78b79bd2f688e4de17797aa5ae1646fc1 /src/com/android/launcher3
parent3879194799d20ce1bd4ca98432dff20f72f634b0 (diff)
downloadandroid_packages_apps_Trebuchet-d0930655e5670bb40ec70523c1c76ff86fab2538.tar.gz
android_packages_apps_Trebuchet-d0930655e5670bb40ec70523c1c76ff86fab2538.tar.bz2
android_packages_apps_Trebuchet-d0930655e5670bb40ec70523c1c76ff86fab2538.zip
Ensure that we are not using the new View constructor.
Change-Id: Iac2dba6d42cd60d6260aee9afc590564d25919a5
Diffstat (limited to 'src/com/android/launcher3')
-rw-r--r--src/com/android/launcher3/AppsContainerView.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/com/android/launcher3/AppsContainerView.java b/src/com/android/launcher3/AppsContainerView.java
index e7b6628cc..06fe93c1f 100644
--- a/src/com/android/launcher3/AppsContainerView.java
+++ b/src/com/android/launcher3/AppsContainerView.java
@@ -72,11 +72,7 @@ public class AppsContainerView extends FrameLayout implements DragSource, Insett
}
public AppsContainerView(Context context, AttributeSet attrs, int defStyleAttr) {
- this(context, attrs, defStyleAttr, 0);
- }
-
- public AppsContainerView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
- super(context, attrs, defStyleAttr, defStyleRes);
+ super(context, attrs, defStyleAttr);
LauncherAppState app = LauncherAppState.getInstance();
DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Resources res = context.getResources();